* [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter
@ 2023-11-30 18:01 Nirmoy Das
2023-11-30 19:52 ` [igt-dev] ✓ Fi.CI.BAT: success for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3) Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Nirmoy Das @ 2023-11-30 18:01 UTC (permalink / raw)
To: igt-dev; +Cc: Nirmoy Das
Add a variation of spin-fixed-duration where the spinners
gets preempted with a short duration high priority task.
This validates preemption in GPU and xe_spin.
v2: rebase
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
tests/intel/xe_spin_batch.c | 126 ++++++++++++++++++++++++++++++++++--
1 file changed, 122 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c
index 6ab604d9b..345776875 100644
--- a/tests/intel/xe_spin_batch.c
+++ b/tests/intel/xe_spin_batch.c
@@ -136,12 +136,102 @@ static void spin_all(int fd, int gt, int class)
xe_vm_destroy(fd, vm);
}
+struct data {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ uint64_t addr;
+};
+
+static void store_dword_batch(struct data *data, uint64_t addr, int value)
+{
+ int b;
+ uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
+ uint64_t batch_addr = addr + batch_offset;
+ uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
+ uint64_t sdi_addr = addr + sdi_offset;
+
+ b = 0;
+ data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data->batch[b++] = sdi_addr;
+ data->batch[b++] = sdi_addr >> 32;
+ data->batch[b++] = value;
+ data->batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data->batch));
+
+ data->addr = batch_addr;
+}
+
+static void preempter(int fd, struct drm_xe_engine_class_instance *hwe)
+{
+ struct drm_xe_sync sync = {
+ .flags = DRM_XE_SYNC_FLAG_SYNCOBJ | DRM_XE_SYNC_FLAG_SIGNAL
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ struct drm_xe_ext_set_property ext = {
+ .base.next_extension = 0,
+ .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+ .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
+ .value = 2, /* High priority */
+ };
+ struct data *data;
+ uint32_t vm;
+ uint32_t exec_queue;
+ uint32_t syncobj;
+ size_t bo_size;
+ int value = 0x123456;
+ uint64_t addr = 0x100000;
+ uint32_t bo = 0;
+
+ syncobj = syncobj_create(fd, 0);
+ sync.handle = syncobj;
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0);
+ bo_size = sizeof(*data);
+ bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
+ xe_get_default_alignment(fd));
+
+ bo = xe_bo_create_flags(fd, vm, bo_size,
+ visible_vram_if_possible(fd, hwe->gt_id));
+
+ xe_vm_bind_async(fd, vm, hwe->gt_id, bo, 0, addr, bo_size, &sync, 1);
+ data = xe_bo_map(fd, bo, bo_size);
+ store_dword_batch(data, addr, value);
+
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, to_user_pointer(&ext));
+ exec.exec_queue_id = exec_queue;
+ exec.address = data->addr;
+ sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
+ xe_exec(fd, &exec);
+
+ igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
+ igt_assert_eq(data->data, value);
+
+ syncobj_destroy(fd, syncobj);
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+}
+
+#define SPIN_FIX_DURATION_NORMAL 0
+#define SPIN_FIX_DURATION_PREEMPT 1
/**
* SUBTEST: spin-fixed-duration
* Description: Basic test which validates the functionality of xe_spin with fixed duration.
* Run type: FULL
*/
-static void xe_spin_fixed_duration(int fd)
+/**
+ * SUBTEST: spin-fixed-duration-with-preempter
+ * Description: Basic test which validates the functionality of xe_spin preemption which gets preempted with a short duration high-priority task.
+ * Run type: FULL
+ */
+static void xe_spin_fixed_duration(int fd, int gt, int class, int flags)
{
struct drm_xe_sync sync = {
.handle = syncobj_create(fd, 0),
@@ -152,12 +242,20 @@ static void xe_spin_fixed_duration(int fd)
.num_syncs = 1,
.syncs = to_user_pointer(&sync),
};
+ struct drm_xe_ext_set_property ext_prio = {
+ .base.next_extension = 0,
+ .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+ .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
+ .value = 0, /* Low priority */
+ };
+ struct drm_xe_engine_class_instance *hwe = NULL, *_hwe;
const uint64_t duration_ns = NSEC_PER_SEC / 10; /* 100ms */
uint64_t spin_addr;
uint64_t ahnd;
uint32_t exec_queue;
uint32_t vm;
uint32_t bo;
+ uint64_t ext = 0;
size_t bo_size;
struct xe_spin *spin;
struct timespec tv;
@@ -165,8 +263,18 @@ static void xe_spin_fixed_duration(int fd)
igt_stats_t stats;
int i;
+ if (flags & SPIN_FIX_DURATION_PREEMPT)
+ ext = to_user_pointer(&ext_prio);
+
+ xe_for_each_hw_engine(fd, _hwe)
+ if (_hwe->engine_class == class && _hwe->gt_id == gt)
+ hwe = _hwe;
+
+ if (!hwe)
+ return;
+
vm = xe_vm_create(fd, 0, 0);
- exec_queue = xe_exec_queue_create_class(fd, vm, DRM_XE_ENGINE_CLASS_COPY);
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, ext);
ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
bo_size = ALIGN(sizeof(*spin) + xe_cs_prefetch_size(fd), xe_get_default_alignment(fd));
bo = xe_bo_create(fd, 0, vm, bo_size);
@@ -186,13 +294,17 @@ static void xe_spin_fixed_duration(int fd)
igt_gettime(&tv);
xe_exec(fd, &exec);
xe_spin_wait_started(spin);
+ if (flags & SPIN_FIX_DURATION_PREEMPT)
+ preempter(fd, hwe);
+
igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL));
igt_stats_push_float(&stats, igt_nsec_elapsed(&tv) * 1e-6);
syncobj_reset(fd, &sync.handle, 1);
igt_debug("i=%d %.2fms\n", i, stats.values_f[i]);
}
elapsed_ms = igt_stats_get_median(&stats);
- igt_info("%.0fms spin took %.2fms (median)\n", duration_ns * 1e-6, elapsed_ms);
+ igt_info("%s: %.0fms spin took %.2fms (median)\n", xe_engine_class_string(hwe->engine_class),
+ duration_ns * 1e-6, elapsed_ms);
igt_assert(elapsed_ms < duration_ns * 1.5e-6 && elapsed_ms > duration_ns * 0.5e-6);
xe_vm_unbind_sync(fd, vm, 0, spin_addr, bo_size);
@@ -230,7 +342,13 @@ igt_main
}
igt_subtest("spin-fixed-duration")
- xe_spin_fixed_duration(fd);
+ xe_spin_fixed_duration(fd, 0, DRM_XE_ENGINE_CLASS_COPY, SPIN_FIX_DURATION_NORMAL);
+
+
+ igt_subtest("spin-fixed-duration-with-preempter")
+ xe_for_each_gt(fd, gt)
+ xe_for_each_hw_engine_class(class)
+ xe_spin_fixed_duration(fd, gt, class, SPIN_FIX_DURATION_PREEMPT);
igt_fixture
drm_close_driver(fd);
--
2.42.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
2023-11-30 18:01 [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Nirmoy Das
@ 2023-11-30 19:52 ` Patchwork
2023-11-30 22:54 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-11-30 19:52 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10508 bytes --]
== Series Details ==
Series: test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
URL : https://patchwork.freedesktop.org/series/126583/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13955 -> IGTPW_10311
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
Participating hosts (36 -> 37)
------------------------------
Additional (3): bat-rpls-1 bat-mtlp-8 fi-pnv-d510
Missing (2): fi-snb-2520m fi-bsw-n3050
Known issues
------------
Here are the changes found in IGTPW_10311 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
- bat-rpls-1: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-1: NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@fbdev@info.html
* igt@fbdev@write:
- bat-rpls-1: NOTRUN -> [SKIP][4] ([i915#2582]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@fbdev@write.html
* igt@gem_lmem_swapping@basic:
- fi-pnv-d510: NOTRUN -> [SKIP][5] ([fdo#109271]) +25 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/fi-pnv-d510/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@random-engines:
- bat-rpls-1: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4083])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-rpls-1: NOTRUN -> [SKIP][11] ([i915#3282])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-rpls-1: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#6645])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#4212]) +8 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4213]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-rpls-1: NOTRUN -> [SKIP][18] ([i915#1845]) +17 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-rpls-1: NOTRUN -> [SKIP][20] ([i915#3637]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([fdo#109285])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-rpls-1: NOTRUN -> [SKIP][22] ([fdo#109285])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#5274])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-1: NOTRUN -> [SKIP][24] ([i915#1849] / [i915#5354])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#8809])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-rpls-1: NOTRUN -> [SKIP][26] ([i915#3555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-1: NOTRUN -> [SKIP][27] ([fdo#109295] / [i915#1845] / [i915#3708])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][28] ([i915#3708] / [i915#4077]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][29] ([i915#3708]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-rpls-1: NOTRUN -> [SKIP][30] ([fdo#109295] / [i915#3708]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-rpls-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-modeset@b-dp6:
- bat-adlp-11: [FAIL][31] ([i915#6121]) -> [PASS][32] +3 other tests pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@b-dp6.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@b-dp6.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7612 -> IGTPW_10311
CI-20190529: 20190529
CI_DRM_13955: d835c627d25ba8775624ff3e854d034708044ac3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10311: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_spin_batch@spin-fixed-duration-with-preempter
-igt@kms_vrr@seamless-rr-switch
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
[-- Attachment #2: Type: text/html, Size: 12670 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
2023-11-30 18:01 [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Nirmoy Das
2023-11-30 19:52 ` [igt-dev] ✓ Fi.CI.BAT: success for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3) Patchwork
@ 2023-11-30 22:54 ` Patchwork
2023-12-01 20:57 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-12-04 10:15 ` [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Kumar, Janga Rahul
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-11-30 22:54 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2897 bytes --]
== Series Details ==
Series: test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
URL : https://patchwork.freedesktop.org/series/126583/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7612_BAT -> XEIGTPW_10311_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10311_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- bat-adlp-7: [FAIL][1] ([i915#2346]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7612/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10311/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4] +2 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7612/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10311/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][5] ([Intel XE#282] / [i915#2017]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7612/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10311/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7612 -> IGTPW_10311
* Linux: xe-538-afdc645350a4b30d1ba6c52deed4ecc11bf7c083 -> xe-541-68b673dd7ccbe64715e0a7492897e8d992040016
IGTPW_10311: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-538-afdc645350a4b30d1ba6c52deed4ecc11bf7c083: afdc645350a4b30d1ba6c52deed4ecc11bf7c083
xe-541-68b673dd7ccbe64715e0a7492897e8d992040016: 68b673dd7ccbe64715e0a7492897e8d992040016
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10311/index.html
[-- Attachment #2: Type: text/html, Size: 3471 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
2023-11-30 18:01 [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Nirmoy Das
2023-11-30 19:52 ` [igt-dev] ✓ Fi.CI.BAT: success for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3) Patchwork
2023-11-30 22:54 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-12-01 20:57 ` Patchwork
2023-12-05 12:15 ` Nirmoy Das
2023-12-04 10:15 ` [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Kumar, Janga Rahul
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2023-12-01 20:57 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 93089 bytes --]
== Series Details ==
Series: test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
URL : https://patchwork.freedesktop.org/series/126583/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13955_full -> IGTPW_10311_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10311_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10311_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_10311/index.html
Participating hosts (11 -> 12)
------------------------------
Additional (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10311_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a1:
- shard-rkl: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a1.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
Known issues
------------
Here are the changes found in IGTPW_10311_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][5] ([i915#7742])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +31 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#3281]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#3281]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8562])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][18] ([i915#6268])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][27] ([i915#9606])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][29] -> [FAIL][30] ([i915#2842]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][31] ([i915#2842])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html
- shard-glk: NOTRUN -> [FAIL][32] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@gem_exec_fair@basic-none@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_fence@submit67.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][38] ([fdo#112283]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-range-active:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-wc:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][46] -> [TIMEOUT][47] ([i915#5493])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#8289])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +11 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_pread@display.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4270])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@read-write:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#8411])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4079])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][67] ([i915#5889])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3323])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3323])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4958])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_linear_blits:
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109289]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][75] ([fdo#109289]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][76] ([fdo#109289]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: NOTRUN -> [INCOMPLETE][77] ([i915#5566])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@gen9_exec_parse@batch-without-end.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#7091])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: NOTRUN -> [SKIP][83] ([fdo#109293] / [fdo#109506])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#8925])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#8925])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#6188])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][87] ([i915#9311])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4212])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear:
- shard-snb: NOTRUN -> [SKIP][89] ([fdo#109271]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-snb4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][90] ([i915#8247]) +3 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][91] ([i915#8247]) +3 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6229])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][93] ([fdo#111614]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5286]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][96] -> [FAIL][97] ([i915#5138]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3638]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#111614]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][100] -> [FAIL][101] ([i915#3743])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#5190]) +16 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][104] ([fdo#110723])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6187]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][106] ([fdo#111615]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +6 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2705])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][109] ([fdo#111827])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-rkl: NOTRUN -> [SKIP][110] ([fdo#111827])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111827])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +8 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7828]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-glk: NOTRUN -> [SKIP][114] ([fdo#109271]) +46 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#7828])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#7828]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#7828]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@gamma@pipe-a:
- shard-rkl: [PASS][118] -> [SKIP][119] ([i915#4098]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_color@gamma@pipe-a.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_color@gamma@pipe-a.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][120] ([i915#7173])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3299])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6944])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7118])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#7118])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][125] ([i915#1339])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#1845] / [i915#4098]) +27 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3555] / [i915#8814]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#109279] / [i915#3359])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3359])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#3555])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3555]) +15 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3555]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3359])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][135] ([fdo#109274] / [i915#5354]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3546]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111825]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][139] ([i915#2346])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#8588])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#8588])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3804])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#8812])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#3840] / [i915#4098])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840] / [i915#4098])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3637])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#8381]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8381]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][149] ([fdo#109271] / [fdo#111767])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-snb5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3637] / [i915#4098]) +10 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#2672]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#2587] / [i915#2672]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#2672]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: [PASS][156] -> [SKIP][157] ([i915#1849] / [i915#4098] / [i915#5354]) +15 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#6880])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#5354]) +34 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#8708]) +22 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#1825]) +14 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][162] ([fdo#109280]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#5460])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8708]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#3458]) +21 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3458]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111825] / [i915#1825]) +17 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][168] ([fdo#111825]) +12 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +13 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#1849] / [i915#4098] / [i915#5354]) +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#8708]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][172] ([fdo#110189])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8228]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_invalid_mode@bad-htotal:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#4098]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_invalid_mode@bad-htotal.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4816])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#4816])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#6301])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@bad-source:
- shard-rkl: [PASS][178] -> [SKIP][179] ([i915#1845] / [i915#4098]) +20 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_pipe_crc_basic@bad-source.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_pipe_crc_basic@bad-source.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#4098] / [i915#8825]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][181] ([i915#4573]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][182] ([i915#8292])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][183] ([i915#8292])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#5176] / [i915#9423]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#5235]) +7 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#5235]) +5 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#8152]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#6953] / [i915#8152])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4098] / [i915#6953] / [i915#8152])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#5235]) +6 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#5235])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#5235]) +19 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6524])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_properties@crtc-properties-atomic:
- shard-rkl: [PASS][194] -> [SKIP][195] ([i915#1849])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_properties@crtc-properties-atomic.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9683])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9683])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111068] / [i915#9683])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109642] / [fdo#111068] / [i915#9683])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9683]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][201] ([fdo#111068] / [i915#9683]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#9673])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-6/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#9673] / [i915#9732]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#9685])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#4235]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#4235])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#4098])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8809])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][209] ([IGT#2] / [i915#6493])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8623])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#8623])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][212] ([i915#9196])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@universal-plane-sanity:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#4098]) +15 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_universal_plane@universal-plane-sanity.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#2437]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2437])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2437])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#2436])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#7387])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#7387])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#4349])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#8850])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][223] ([i915#9351])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][224] ([fdo#109291])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@prime_udl.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3708] / [i915#4077]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][226] ([fdo#109295] / [i915#3708])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3708])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#2575]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#2575]) +12 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-rkl: NOTRUN -> [SKIP][230] ([fdo#109315]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_cl@valid-submission:
- shard-tglu: NOTRUN -> [SKIP][231] ([fdo#109315] / [i915#2575])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@v3d/v3d_submit_cl@valid-submission.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#2575]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#7711]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#7711]) +8 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#2575])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-5/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#7711]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#7711]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-rkl: [SKIP][238] ([i915#2582]) -> [PASS][239] +1 other test pass
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@fbdev@nullptr.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@fbdev@nullptr.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][240] ([i915#9364]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][242] ([i915#5784]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][244] ([i915#2842]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [FAIL][246] ([i915#2842]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][248] ([i915#2842]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}:
- shard-dg1: [FAIL][250] ([i915#3591]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [DMESG-FAIL][252] -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][254] ([fdo#103375]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][256] ([i915#3743]) -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_color@degamma@pipe-a:
- shard-rkl: [SKIP][258] ([i915#4098]) -> [PASS][259] +11 other tests pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_color@degamma@pipe-a.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_color@degamma@pipe-a.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- shard-rkl: [SKIP][260] ([i915#1845] / [i915#4098]) -> [PASS][261] +17 other tests pass
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [FAIL][262] ([i915#6880]) -> [PASS][263] +1 other test pass
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-rkl: [SKIP][264] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][265] +13 other tests pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
- shard-rkl: [SKIP][266] ([i915#9519]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* {igt@kms_pm_rpm@fences}:
- shard-rkl: [SKIP][268] ([i915#1849]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_pm_rpm@fences.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_pm_rpm@fences.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][270] ([i915#1849] / [i915#4098]) -> [PASS][271] +2 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_properties@plane-properties-atomic.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][272] ([i915#9196]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- shard-snb: [FAIL][274] ([i915#9196]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
* igt@perf_pmu@multi-client@vcs0:
- shard-mtlp: [FAIL][276] ([i915#4349]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@multi-client@vcs0.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@perf_pmu@multi-client@vcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg1: [FAIL][278] ([i915#4349]) -> [PASS][279] +2 other tests pass
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_vgem@fence-wait@vcs1:
- shard-mtlp: [ABORT][280] -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@prime_vgem@fence-wait@vcs1.html
* igt@prime_vgem@fence-wait@vecs0:
- shard-mtlp: [DMESG-WARN][282] ([i915#8875]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@prime_vgem@fence-wait@vecs0.html
#### Warnings ####
* igt@kms_async_flips@crc@pipe-a-edp-1:
- shard-mtlp: [FAIL][284] ([i915#8247]) -> [DMESG-FAIL][285] ([i915#8561])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@kms_async_flips@crc@pipe-a-edp-1.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][286] ([i915#1769] / [i915#3555]) -> [SKIP][287] ([i915#1845] / [i915#4098])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][288] ([i915#5286]) -> [SKIP][289] ([i915#1845] / [i915#4098]) +6 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][290] ([i915#1845] / [i915#4098]) -> [SKIP][291] ([i915#5286]) +5 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][292] ([fdo#111614] / [i915#3638]) -> [SKIP][293] ([i915#1845] / [i915#4098]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][294] ([i915#1845] / [i915#4098]) -> [SKIP][295] ([fdo#111614] / [i915#3638]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][296] ([fdo#110723]) -> [SKIP][297] ([i915#1845] / [i915#4098]) +7 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][298] ([i915#1845] / [i915#4098]) -> [SKIP][299] ([fdo#110723]) +7 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: [SKIP][300] ([i915#1845] / [i915#4098]) -> [SKIP][301] ([fdo#111615])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][302] ([i915#3116]) -> [SKIP][303] ([i915#1845] / [i915#4098])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][304] ([i915#7118] / [i915#7162]) -> [SKIP][305] ([i915#7118])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_content_protection@type1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][306] ([i915#1845] / [i915#4098]) -> [SKIP][307] ([i915#3359])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][308] ([i915#3359]) -> [SKIP][309] ([i915#1845] / [i915#4098]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][310] ([i915#3555]) -> [SKIP][311] ([i915#1845] / [i915#4098]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][312] ([fdo#111825]) -> [SKIP][313] ([i915#1845] / [i915#4098]) +5 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: [SKIP][314] ([i915#1845] / [i915#4098]) -> [SKIP][315] ([fdo#111825]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: [SKIP][316] ([fdo#111767] / [fdo#111825]) -> [SKIP][317] ([i915#1845] / [i915#4098])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][318] ([i915#1845] / [i915#4098]) -> [SKIP][319] ([i915#4103]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][320] ([i915#1845] / [i915#4098]) -> [SKIP][321] ([i915#3555] / [i915#3840]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][322] ([fdo#109285] / [i915#4098]) -> [SKIP][323] ([fdo#109285])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][324] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][325] ([fdo#111825] / [i915#1825]) +27 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][326] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][327] ([fdo#111825]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][328] ([i915#3023]) -> [SKIP][329] ([i915#1849] / [i915#4098] / [i915#5354]) +26 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][330] ([fdo#111825] / [i915#1825]) -> [SKIP][331] ([i915#1849] / [i915#4098] / [i915#5354]) +33 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][332] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][333] ([i915#3023]) +21 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][334] ([i915#4098]) -> [SKIP][335] ([i915#3555] / [i915#8228])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_hdr@invalid-hdr.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][336] ([i915#4816]) -> [SKIP][337] ([i915#4070] / [i915#4816])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-rkl: [SKIP][338] ([fdo#111825]) -> [SKIP][339] ([fdo#111825] / [i915#8152])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_psr@psr2_basic:
- shard-dg2: [SKIP][340] ([i915#9673] / [i915#9732]) -> [SKIP][341] ([i915#9673] / [i915#9736])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-3/igt@kms_psr@psr2_basic.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_psr@psr2_basic.html
* igt@kms_psr@psr2_cursor_mmap_gtt:
- shard-dg2: [SKIP][342] ([i915#9673] / [i915#9736]) -> [SKIP][343] ([i915#9673] / [i915#9732]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_psr@psr2_cursor_mmap_gtt.html
* igt@kms_psr@psr2_dpms:
- shard-rkl: [SKIP][344] ([i915#9673] / [i915#9732]) -> [SKIP][345] ([i915#9673]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_psr@psr2_dpms.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-rkl: [SKIP][346] ([i915#9673]) -> [SKIP][347] ([i915#9673] / [i915#9732]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_psr@psr2_sprite_mmap_gtt.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][348] ([i915#5289]) -> [SKIP][349] ([i915#1845] / [i915#4098])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][350] ([i915#1845] / [i915#4098]) -> [SKIP][351] ([fdo#111615] / [i915#5289]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][352] ([fdo#111615] / [i915#5289]) -> [SKIP][353] ([i915#1845] / [i915#4098]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][354] ([i915#1845] / [i915#4098]) -> [SKIP][355] ([i915#3555]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_vrr@negative-basic.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_vrr@negative-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[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#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[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#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#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[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#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[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#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[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#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/intel/issues/8825
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[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#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
[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#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7612 -> IGTPW_10311
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13955: d835c627d25ba8775624ff3e854d034708044ac3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10311: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
[-- Attachment #2: Type: text/html, Size: 117099 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter
2023-11-30 18:01 [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Nirmoy Das
` (2 preceding siblings ...)
2023-12-01 20:57 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-12-04 10:15 ` Kumar, Janga Rahul
3 siblings, 0 replies; 6+ messages in thread
From: Kumar, Janga Rahul @ 2023-12-04 10:15 UTC (permalink / raw)
To: Das, Nirmoy, igt-dev@lists.freedesktop.org
LGTM,
Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> -----Original Message-----
> From: Das, Nirmoy <nirmoy.das@intel.com>
> Sent: Thursday, November 30, 2023 11:31 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Das, Nirmoy <nirmoy.das@intel.com>; Kempczynski, Zbigniew
> <zbigniew.kempczynski@intel.com>; Kumar, Janga Rahul
> <janga.rahul.kumar@intel.com>
> Subject: [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-
> preempter
>
> Add a variation of spin-fixed-duration where the spinners gets preempted with a
> short duration high priority task.
>
> This validates preemption in GPU and xe_spin.
>
> v2: rebase
>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/xe_spin_batch.c | 126 ++++++++++++++++++++++++++++++++++--
> 1 file changed, 122 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c index
> 6ab604d9b..345776875 100644
> --- a/tests/intel/xe_spin_batch.c
> +++ b/tests/intel/xe_spin_batch.c
> @@ -136,12 +136,102 @@ static void spin_all(int fd, int gt, int class)
> xe_vm_destroy(fd, vm);
> }
>
> +struct data {
> + uint32_t batch[16];
> + uint64_t pad;
> + uint32_t data;
> + uint64_t addr;
> +};
> +
> +static void store_dword_batch(struct data *data, uint64_t addr, int
> +value) {
> + int b;
> + uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
> + uint64_t batch_addr = addr + batch_offset;
> + uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
> + uint64_t sdi_addr = addr + sdi_offset;
> +
> + b = 0;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = sdi_addr;
> + data->batch[b++] = sdi_addr >> 32;
> + data->batch[b++] = value;
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + data->addr = batch_addr;
> +}
> +
> +static void preempter(int fd, struct drm_xe_engine_class_instance *hwe)
> +{
> + struct drm_xe_sync sync = {
> + .flags = DRM_XE_SYNC_FLAG_SYNCOBJ |
> DRM_XE_SYNC_FLAG_SIGNAL
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> + struct drm_xe_ext_set_property ext = {
> + .base.next_extension = 0,
> + .base.name =
> DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
> + .value = 2, /* High priority */
> + };
> + struct data *data;
> + uint32_t vm;
> + uint32_t exec_queue;
> + uint32_t syncobj;
> + size_t bo_size;
> + int value = 0x123456;
> + uint64_t addr = 0x100000;
> + uint32_t bo = 0;
> +
> + syncobj = syncobj_create(fd, 0);
> + sync.handle = syncobj;
> +
> + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT,
> 0);
> + bo_size = sizeof(*data);
> + bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
> + xe_get_default_alignment(fd));
> +
> + bo = xe_bo_create_flags(fd, vm, bo_size,
> + visible_vram_if_possible(fd, hwe->gt_id));
> +
> + xe_vm_bind_async(fd, vm, hwe->gt_id, bo, 0, addr, bo_size, &sync, 1);
> + data = xe_bo_map(fd, bo, bo_size);
> + store_dword_batch(data, addr, value);
> +
> + exec_queue = xe_exec_queue_create(fd, vm, hwe,
> to_user_pointer(&ext));
> + exec.exec_queue_id = exec_queue;
> + exec.address = data->addr;
> + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
> + xe_exec(fd, &exec);
> +
> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
> + igt_assert_eq(data->data, value);
> +
> + syncobj_destroy(fd, syncobj);
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> +
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> +#define SPIN_FIX_DURATION_NORMAL 0
> +#define SPIN_FIX_DURATION_PREEMPT 1
> /**
> * SUBTEST: spin-fixed-duration
> * Description: Basic test which validates the functionality of xe_spin with fixed
> duration.
> * Run type: FULL
> */
> -static void xe_spin_fixed_duration(int fd)
> +/**
> + * SUBTEST: spin-fixed-duration-with-preempter
> + * Description: Basic test which validates the functionality of xe_spin
> preemption which gets preempted with a short duration high-priority task.
> + * Run type: FULL
> + */
> +static void xe_spin_fixed_duration(int fd, int gt, int class, int
> +flags)
> {
> struct drm_xe_sync sync = {
> .handle = syncobj_create(fd, 0),
> @@ -152,12 +242,20 @@ static void xe_spin_fixed_duration(int fd)
> .num_syncs = 1,
> .syncs = to_user_pointer(&sync),
> };
> + struct drm_xe_ext_set_property ext_prio = {
> + .base.next_extension = 0,
> + .base.name =
> DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
> + .value = 0, /* Low priority */
> + };
> + struct drm_xe_engine_class_instance *hwe = NULL, *_hwe;
> const uint64_t duration_ns = NSEC_PER_SEC / 10; /* 100ms */
> uint64_t spin_addr;
> uint64_t ahnd;
> uint32_t exec_queue;
> uint32_t vm;
> uint32_t bo;
> + uint64_t ext = 0;
> size_t bo_size;
> struct xe_spin *spin;
> struct timespec tv;
> @@ -165,8 +263,18 @@ static void xe_spin_fixed_duration(int fd)
> igt_stats_t stats;
> int i;
>
> + if (flags & SPIN_FIX_DURATION_PREEMPT)
> + ext = to_user_pointer(&ext_prio);
> +
> + xe_for_each_hw_engine(fd, _hwe)
> + if (_hwe->engine_class == class && _hwe->gt_id == gt)
> + hwe = _hwe;
> +
> + if (!hwe)
> + return;
> +
> vm = xe_vm_create(fd, 0, 0);
> - exec_queue = xe_exec_queue_create_class(fd, vm,
> DRM_XE_ENGINE_CLASS_COPY);
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, ext);
> ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
> bo_size = ALIGN(sizeof(*spin) + xe_cs_prefetch_size(fd),
> xe_get_default_alignment(fd));
> bo = xe_bo_create(fd, 0, vm, bo_size); @@ -186,13 +294,17 @@ static
> void xe_spin_fixed_duration(int fd)
> igt_gettime(&tv);
> xe_exec(fd, &exec);
> xe_spin_wait_started(spin);
> + if (flags & SPIN_FIX_DURATION_PREEMPT)
> + preempter(fd, hwe);
> +
> igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0,
> NULL));
> igt_stats_push_float(&stats, igt_nsec_elapsed(&tv) * 1e-6);
> syncobj_reset(fd, &sync.handle, 1);
> igt_debug("i=%d %.2fms\n", i, stats.values_f[i]);
> }
> elapsed_ms = igt_stats_get_median(&stats);
> - igt_info("%.0fms spin took %.2fms (median)\n", duration_ns * 1e-6,
> elapsed_ms);
> + igt_info("%s: %.0fms spin took %.2fms (median)\n",
> xe_engine_class_string(hwe->engine_class),
> + duration_ns * 1e-6, elapsed_ms);
> igt_assert(elapsed_ms < duration_ns * 1.5e-6 && elapsed_ms >
> duration_ns * 0.5e-6);
>
> xe_vm_unbind_sync(fd, vm, 0, spin_addr, bo_size); @@ -230,7 +342,13
> @@ igt_main
> }
>
> igt_subtest("spin-fixed-duration")
> - xe_spin_fixed_duration(fd);
> + xe_spin_fixed_duration(fd, 0, DRM_XE_ENGINE_CLASS_COPY,
> +SPIN_FIX_DURATION_NORMAL);
> +
> +
> + igt_subtest("spin-fixed-duration-with-preempter")
> + xe_for_each_gt(fd, gt)
> + xe_for_each_hw_engine_class(class)
> + xe_spin_fixed_duration(fd, gt, class,
> SPIN_FIX_DURATION_PREEMPT);
>
> igt_fixture
> drm_close_driver(fd);
> --
> 2.42.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3)
2023-12-01 20:57 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-12-05 12:15 ` Nirmoy Das
0 siblings, 0 replies; 6+ messages in thread
From: Nirmoy Das @ 2023-12-05 12:15 UTC (permalink / raw)
To: igt-dev, Patchwork, Nirmoy Das
[-- Attachment #1: Type: text/plain, Size: 113556 bytes --]
On 12/1/2023 9:57 PM, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* test/xe_spin_batch: Add spin-fixed-duration-with-preempter
> (rev3)
> *URL:* https://patchwork.freedesktop.org/series/126583/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
>
>
> CI Bug Log - changes from CI_DRM_13955_full -> IGTPW_10311_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_10311_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10311_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_10311/index.html
>
>
> Participating hosts (11 -> 12)
>
> Additional (1): shard-tglu0
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_10311_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a1:
>
> o shard-rkl: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a1.html>
> *
>
> igt@sysfs_heartbeat_interval@nopreempt@vcs0:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html>
>
Unrelated failures. Merged this test.
Regards,
Nirmoy
> *
>
>
> Known issues
>
> Here are the changes found in IGTPW_10311_full that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@api_intel_bb@blit-reloc-keep-cache:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@api_intel_bb@blit-reloc-keep-cache.html>
> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>)
> *
>
> igt@drm_fdinfo@most-busy-check-all@rcs0:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html>
> (i915#7742 <https://gitlab.freedesktop.org/drm/intel/issues/7742>)
> *
>
> igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +31
> other tests skip
> *
>
> igt@drm_fdinfo@virtual-busy-all:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@drm_fdinfo@virtual-busy-all.html>
> (i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>)
> *
>
> igt@gem_bad_reloc@negative-reloc-lut:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +6
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@gem_bad_reloc@negative-reloc-lut.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +2
> other tests skip
>
> *
>
> igt@gem_basic@multigpu-create-close:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@gem_basic@multigpu-create-close.html>
> (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>)
> *
>
> igt@gem_ccs@block-multicopy-compressed:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html>
> (i915#9323 <https://gitlab.freedesktop.org/drm/intel/issues/9323>)
> *
>
> igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html>
> (i915#7297 <https://gitlab.freedesktop.org/drm/intel/issues/7297>)
> *
>
> igt@gem_create@create-ext-cpu-access-sanity-check:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html>
> (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>)
> *
>
> igt@gem_create@create-ext-set-pat:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_create@create-ext-set-pat.html>
> (i915#8562 <https://gitlab.freedesktop.org/drm/intel/issues/8562>)
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_create@create-ext-set-pat.html>
> (i915#8562 <https://gitlab.freedesktop.org/drm/intel/issues/8562>)
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@gem_create@create-ext-set-pat.html>
> (i915#8562 <https://gitlab.freedesktop.org/drm/intel/issues/8562>)
>
> *
>
> igt@gem_ctx_exec@basic-nohangcheck:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html>
> (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>)
> *
>
> igt@gem_ctx_persistence@heartbeat-close:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html>
> (i915#8555 <https://gitlab.freedesktop.org/drm/intel/issues/8555>)
> *
>
> igt@gem_ctx_persistence@heartbeat-hostile:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/intel/issues/8555>) +2
> other tests skip
> *
>
> igt@gem_ctx_sseu@engines:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@gem_ctx_sseu@engines.html>
> (i915#280 <https://gitlab.freedesktop.org/drm/intel/issues/280>)
> *
>
> igt@gem_eio@hibernate:
>
> o shard-rkl: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gem_eio@hibernate.html>
> (i915#7975
> <https://gitlab.freedesktop.org/drm/intel/issues/7975> /
> i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>)
> *
>
> igt@gem_exec_balancer@bonded-dual:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@gem_exec_balancer@bonded-dual.html>
> (i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>)
> *
>
> igt@gem_exec_balancer@bonded-pair:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_balancer@bonded-pair.html>
> (i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>)
> *
>
> igt@gem_exec_balancer@noheartbeat:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@gem_exec_balancer@noheartbeat.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/intel/issues/8555>) +1
> other test skip
> *
>
> igt@gem_exec_balancer@parallel-bb-first:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html>
> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>)
> *
>
> igt@gem_exec_capture@many-4k-incremental:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html>
> (i915#9606 <https://gitlab.freedesktop.org/drm/intel/issues/9606>)
> *
>
> igt@gem_exec_fair@basic-deadline:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@gem_exec_fair@basic-deadline.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/intel/issues/3539> /
> i915#4852
> <https://gitlab.freedesktop.org/drm/intel/issues/4852>) +1
> other test skip
> *
>
> igt@gem_exec_fair@basic-none-share@rcs0:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
> other test fail
> *
>
> igt@gem_exec_fair@basic-none-vip@rcs0:
>
> o
>
> shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>
> o
>
> shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>
> *
>
> igt@gem_exec_fair@basic-none@rcs0:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@gem_exec_fair@basic-none@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@gem_exec_fair@basic-none@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
> other test fail
> *
>
> igt@gem_exec_fair@basic-pace-share:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_fair@basic-pace-share.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/intel/issues/3539> /
> i915#4852
> <https://gitlab.freedesktop.org/drm/intel/issues/4852>) +3
> other tests skip
> *
>
> igt@gem_exec_fair@basic-pace-solo:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html>
> (i915#3539 <https://gitlab.freedesktop.org/drm/intel/issues/3539>)
> *
>
> igt@gem_exec_fence@submit67:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_fence@submit67.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/intel/issues/4812>) +1
> other test skip
> *
>
> igt@gem_exec_params@secure-non-master:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_exec_params@secure-non-master.html>
> (fdo#112283
> <https://bugs.freedesktop.org/show_bug.cgi?id=112283>) +1
> other test skip
> *
>
> igt@gem_exec_reloc@basic-range-active:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_exec_reloc@basic-range-active.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +4
> other tests skip
> *
>
> igt@gem_exec_reloc@basic-wc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@gem_exec_reloc@basic-wc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +4
> other tests skip
> *
>
> igt@gem_exec_schedule@preempt-queue:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/intel/issues/4537> /
> i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>)
> *
>
> igt@gem_exec_schedule@preempt-queue-contexts:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/intel/issues/4812>) +1
> other test skip
> *
>
> igt@gem_fenced_exec_thrash@no-spare-fences-busy:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html>
> (i915#4860 <https://gitlab.freedesktop.org/drm/intel/issues/4860>)
> *
>
> igt@gem_lmem_swapping@heavy-verify-random-ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html>
> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> *
>
> igt@gem_lmem_swapping@parallel-random-verify-ccs:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> *
>
> igt@gem_lmem_swapping@smem-oom@lmem0:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html>
> -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html>
> (i915#5493 <https://gitlab.freedesktop.org/drm/intel/issues/5493>)
> *
>
> igt@gem_lmem_swapping@verify:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gem_lmem_swapping@verify.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2
> other tests skip
> *
>
> igt@gem_media_fill@media-fill:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_media_fill@media-fill.html>
> (i915#8289 <https://gitlab.freedesktop.org/drm/intel/issues/8289>)
> *
>
> igt@gem_mmap_gtt@bad-object:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@gem_mmap_gtt@bad-object.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +4
> other tests skip
> *
>
> igt@gem_mmap_gtt@basic-wc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@gem_mmap_gtt@basic-wc.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +2
> other tests skip
> *
>
> igt@gem_mmap_gtt@medium-copy-xy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@gem_mmap_gtt@medium-copy-xy.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +11
> other tests skip
> *
>
> igt@gem_mmap_wc@bad-object:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@gem_mmap_wc@bad-object.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +1
> other test skip
> *
>
> igt@gem_mmap_wc@close:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_mmap_wc@close.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +7
> other tests skip
> *
>
> igt@gem_partial_pwrite_pread@writes-after-reads:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3
> other tests skip
> *
>
> igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +2
> other tests skip
> *
>
> igt@gem_pread@display:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_pread@display.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3
> other tests skip
> *
>
> igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2
> other tests skip
> *
>
> igt@gem_pxp@protected-encrypted-src-copy-not-readible:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html>
> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> *
>
> igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1
> other test skip
> *
>
> igt@gem_readwrite@read-write:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@gem_readwrite@read-write.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3
> other tests skip
> *
>
> igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html>
> (i915#8428
> <https://gitlab.freedesktop.org/drm/intel/issues/8428>) +2
> other tests skip
> *
>
> igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html>
> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>)
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html>
> (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>)
>
> *
>
> igt@gem_set_tiling_vs_gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html>
> (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>)
> *
>
> igt@gem_softpin@evict-snoop-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html>
> (i915#4885 <https://gitlab.freedesktop.org/drm/intel/issues/4885>)
> *
>
> igt@gem_spin_batch@spin-all-new:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html>
> (i915#5889 <https://gitlab.freedesktop.org/drm/intel/issues/5889>)
> *
>
> igt@gem_userptr_blits@dmabuf-sync:
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#3323 <https://gitlab.freedesktop.org/drm/intel/issues/3323>)
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html>
> (i915#3323 <https://gitlab.freedesktop.org/drm/intel/issues/3323>)
>
> *
>
> igt@gem_userptr_blits@dmabuf-unsync:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1
> other test skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html>
> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
>
> *
>
> igt@gem_userptr_blits@map-fixed-invalidate-busy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/intel/issues/3297> /
> i915#4880 <https://gitlab.freedesktop.org/drm/intel/issues/4880>)
> *
>
> igt@gem_userptr_blits@sd-probe:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/intel/issues/3297> /
> i915#4958 <https://gitlab.freedesktop.org/drm/intel/issues/4958>)
> *
>
> igt@gen3_render_linear_blits:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gen3_render_linear_blits.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1
> other test skip
> *
>
> igt@gen7_exec_parse@basic-allocation:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@gen7_exec_parse@basic-allocation.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +4
> other tests skip
> *
>
> igt@gen7_exec_parse@basic-rejected:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@gen7_exec_parse@basic-rejected.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +6
> other tests skip
> *
>
> igt@gen9_exec_parse@allowed-all:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk4/igt@gen9_exec_parse@allowed-all.html>
> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566>)
> *
>
> igt@gen9_exec_parse@batch-without-end:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@gen9_exec_parse@batch-without-end.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1
> other test skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html>
> (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>)
>
> *
>
> igt@gen9_exec_parse@bb-oversize:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/intel/issues/2527>) +3
> other tests skip
> *
>
> igt@gen9_exec_parse@bb-start-out:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1
> other test skip
> *
>
> igt@i915_pipe_stress@stress-xrgb8888-ytiled:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html>
> (i915#7091 <https://gitlab.freedesktop.org/drm/intel/issues/7091>)
> *
>
> igt@i915_pm_rpm@gem-execbuf-stress-pc8:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html>
> (fdo#109293
> <https://bugs.freedesktop.org/show_bug.cgi?id=109293> /
> fdo#109506 <https://bugs.freedesktop.org/show_bug.cgi?id=109506>)
> *
>
> igt@i915_pm_rps@thresholds-idle@gt0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@i915_pm_rps@thresholds-idle@gt0.html>
> (i915#8925 <https://gitlab.freedesktop.org/drm/intel/issues/8925>)
> *
>
> igt@i915_pm_rps@thresholds-park@gt0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html>
> (i915#8925 <https://gitlab.freedesktop.org/drm/intel/issues/8925>)
> *
>
> igt@i915_query@query-topology-coherent-slice-mask:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html>
> (i915#6188 <https://gitlab.freedesktop.org/drm/intel/issues/6188>)
> *
>
> igt@i915_selftest@mock@memory_region:
>
> o shard-dg2: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@i915_selftest@mock@memory_region.html>
> (i915#9311 <https://gitlab.freedesktop.org/drm/intel/issues/9311>)
> *
>
> igt@kms_addfb_basic@clobberred-modifier:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html>
> (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-snb4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +8
> other tests skip
> *
>
> igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html>
> (i915#8247
> <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3
> other tests fail
> *
>
> igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
>
> o shard-dg1: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html>
> (i915#8247
> <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3
> other tests fail
> *
>
> igt@kms_async_flips@test-cursor:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_async_flips@test-cursor.html>
> (i915#6229 <https://gitlab.freedesktop.org/drm/intel/issues/6229>)
> *
>
> igt@kms_big_fb@4-tiled-16bpp-rotate-90:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html>
> (fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +4
> other tests skip
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-0:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/intel/issues/4538> /
> i915#5286
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1
> other test skip
>
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
> (i915#5138
> <https://gitlab.freedesktop.org/drm/intel/issues/5138>) +1
> other test fail
> *
>
> igt@kms_big_fb@linear-64bpp-rotate-270:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/intel/issues/3638>) +1
> other test skip
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html>
> (fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1
> other test skip
> *
>
> igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html>
> (i915#3743 <https://gitlab.freedesktop.org/drm/intel/issues/3743>)
> *
>
> igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +16
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html>
> (i915#4538 <https://gitlab.freedesktop.org/drm/intel/issues/4538>)
> *
>
> igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html>
> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>)
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html>
> (i915#6187
> <https://gitlab.freedesktop.org/drm/intel/issues/6187>) +1
> other test skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +2
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/intel/issues/4538> /
> i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +6
> other tests skip
> *
>
> igt@kms_big_joiner@invalid-modeset:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_big_joiner@invalid-modeset.html>
> (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>)
> *
>
> igt@kms_chamelium_color@ctm-0-25:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_chamelium_color@ctm-0-25.html>
> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> *
>
> igt@kms_chamelium_color@ctm-0-75:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_chamelium_color@ctm-0-75.html>
> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> *
>
> igt@kms_chamelium_color@ctm-blue-to-red:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html>
> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> *
>
> igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +8
> other tests skip
> *
>
> igt@kms_chamelium_frames@hdmi-crc-multiple:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2
> other tests skip
> *
>
> igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +46
> other tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html>
> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>)
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +6
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +4
> other tests skip
>
> *
>
> igt@kms_color@gamma@pipe-a:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_color@gamma@pipe-a.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_color@gamma@pipe-a.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +5
> other tests skip
> *
>
> igt@kms_content_protection@atomic@pipe-a-dp-4:
>
> o shard-dg2: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html>
> (i915#7173 <https://gitlab.freedesktop.org/drm/intel/issues/7173>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html>
> (i915#3299 <https://gitlab.freedesktop.org/drm/intel/issues/3299>)
> *
>
> igt@kms_content_protection@legacy:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_content_protection@legacy.html>
> (i915#6944 <https://gitlab.freedesktop.org/drm/intel/issues/6944>)
> *
>
> igt@kms_content_protection@srm:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_content_protection@srm.html>
> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>)
> *
>
> igt@kms_content_protection@type1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_content_protection@type1.html>
> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>)
> *
>
> igt@kms_content_protection@uevent@pipe-a-dp-4:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html>
> (i915#1339 <https://gitlab.freedesktop.org/drm/intel/issues/1339>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-128x42:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +27
> other tests skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-32x32:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#8814
> <https://gitlab.freedesktop.org/drm/intel/issues/8814>) +1
> other test skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html>
> (fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279> /
> i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-max-size:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html>
> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>)
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-32x10:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +15
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2
> other tests skip
>
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-512x170:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html>
> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x10:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +6
> other tests skip
> *
>
> igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +7
> other tests skip
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html>
> (i915#3546
> <https://gitlab.freedesktop.org/drm/intel/issues/3546>) +1
> other test skip
>
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/intel/issues/4103> /
> i915#4213
> <https://gitlab.freedesktop.org/drm/intel/issues/4213> /
> i915#5608
> <https://gitlab.freedesktop.org/drm/intel/issues/5608>) +1
> other test skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +6
> other tests skip
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html>
> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
> *
>
> igt@kms_display_modes@mst-extended-mode-negative:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html>
> (i915#8588 <https://gitlab.freedesktop.org/drm/intel/issues/8588>)
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@kms_display_modes@mst-extended-mode-negative.html>
> (i915#8588 <https://gitlab.freedesktop.org/drm/intel/issues/8588>)
>
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html>
> (i915#3804 <https://gitlab.freedesktop.org/drm/intel/issues/3804>)
> *
>
> igt@kms_draw_crc@draw-method-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html>
> (i915#8812 <https://gitlab.freedesktop.org/drm/intel/issues/8812>)
> *
>
> igt@kms_dsc@dsc-with-bpc-formats:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#3840
> <https://gitlab.freedesktop.org/drm/intel/issues/3840> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#3840
> <https://gitlab.freedesktop.org/drm/intel/issues/3840> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
>
> *
>
> igt@kms_flip@2x-blocking-wf_vblank:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_flip@2x-blocking-wf_vblank.html>
> (i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>)
> *
>
> igt@kms_flip@2x-flip-vs-fences-interruptible:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html>
> (i915#8381
> <https://gitlab.freedesktop.org/drm/intel/issues/8381>) +1
> other test skip
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html>
> (i915#8381
> <https://gitlab.freedesktop.org/drm/intel/issues/8381>) +1
> other test skip
>
> *
>
> igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-snb5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111767 <https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
> *
>
> igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +7
> other tests skip
> *
>
> igt@kms_flip@basic-flip-vs-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_flip@basic-flip-vs-dpms.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/intel/issues/3637> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +10
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
> i915#2672
> <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2
> other tests skip
>
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +15
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html>
> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +34
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +22
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +14
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html>
> (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +1
> other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-tiling-y:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html>
> (i915#5460 <https://gitlab.freedesktop.org/drm/intel/issues/5460>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +1
> other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +21
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +3
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> /
> i915#1825
> <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +17
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +12
> other tests skip
>
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-rte:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-rte.html>
> (i915#3023
> <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +13
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +11
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +3
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html>
> (fdo#110189 <https://bugs.freedesktop.org/show_bug.cgi?id=110189>)
> *
>
> igt@kms_hdr@invalid-metadata-sizes:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#8228
> <https://gitlab.freedesktop.org/drm/intel/issues/8228>) +2
> other tests skip
> *
>
> igt@kms_invalid_mode@bad-htotal:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_invalid_mode@bad-htotal.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +3
> other tests skip
> *
>
> igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html>
> (i915#4816 <https://gitlab.freedesktop.org/drm/intel/issues/4816>)
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html>
> (i915#4816 <https://gitlab.freedesktop.org/drm/intel/issues/4816>)
>
> *
>
> igt@kms_panel_fitting@atomic-fastset:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#6301 <https://gitlab.freedesktop.org/drm/intel/issues/6301>)
> *
>
> igt@kms_pipe_crc_basic@bad-source:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_pipe_crc_basic@bad-source.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_pipe_crc_basic@bad-source.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +20
> other tests skip
> *
>
> igt@kms_plane@plane-position-hole-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane@plane-position-hole-dpms.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#8825
> <https://gitlab.freedesktop.org/drm/intel/issues/8825>) +2
> other tests skip
> *
>
> igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html>
> (i915#4573
> <https://gitlab.freedesktop.org/drm/intel/issues/4573>) +1
> other test fail
> *
>
> igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html>
> (i915#8292 <https://gitlab.freedesktop.org/drm/intel/issues/8292>)
> *
>
> igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html>
> (i915#8292 <https://gitlab.freedesktop.org/drm/intel/issues/8292>)
> *
>
> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176> /
> i915#9423
> <https://gitlab.freedesktop.org/drm/intel/issues/9423>) +1
> other test skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7
> other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +5
> other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html>
> (i915#8152
> <https://gitlab.freedesktop.org/drm/intel/issues/8152>) +1
> other test skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html>
> (i915#6953
> <https://gitlab.freedesktop.org/drm/intel/issues/6953> /
> i915#8152 <https://gitlab.freedesktop.org/drm/intel/issues/8152>)
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#6953
> <https://gitlab.freedesktop.org/drm/intel/issues/6953> /
> i915#8152 <https://gitlab.freedesktop.org/drm/intel/issues/8152>)
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +6
> other tests skip
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>)
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +19
> other tests skip
> *
>
> igt@kms_prime@basic-crc-hybrid:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html>
> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>)
> *
>
> igt@kms_properties@crtc-properties-atomic:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_properties@crtc-properties-atomic.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_properties@crtc-properties-atomic.html>
> (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849>)
> *
>
> igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#9683 <https://gitlab.freedesktop.org/drm/intel/issues/9683>)
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#9683 <https://gitlab.freedesktop.org/drm/intel/issues/9683>)
>
> *
>
> igt@kms_psr2_sf@plane-move-sf-dmg-area:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_psr2_sf@plane-move-sf-dmg-area.html>
> (fdo#111068
> <https://bugs.freedesktop.org/show_bug.cgi?id=111068> /
> i915#9683 <https://gitlab.freedesktop.org/drm/intel/issues/9683>)
> *
>
> igt@kms_psr2_su@frontbuffer-xrgb8888:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html>
> (fdo#109642
> <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
> fdo#111068
> <https://bugs.freedesktop.org/show_bug.cgi?id=111068> /
> i915#9683 <https://gitlab.freedesktop.org/drm/intel/issues/9683>)
> *
>
> igt@kms_psr2_su@page_flip-xrgb8888:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/intel/issues/9683>) +3
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html>
> (fdo#111068
> <https://bugs.freedesktop.org/show_bug.cgi?id=111068> /
> i915#9683
> <https://gitlab.freedesktop.org/drm/intel/issues/9683>) +1
> other test skip
>
> *
>
> igt@kms_psr@psr2_primary_mmap_cpu:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-6/igt@kms_psr@psr2_primary_mmap_cpu.html>
> (i915#9673 <https://gitlab.freedesktop.org/drm/intel/issues/9673>)
> *
>
> igt@kms_psr@psr2_sprite_plane_move:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9732
> <https://gitlab.freedesktop.org/drm/intel/issues/9732>) +5
> other tests skip
> *
>
> igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html>
> (i915#9685 <https://gitlab.freedesktop.org/drm/intel/issues/9685>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-90:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html>
> (i915#4235
> <https://gitlab.freedesktop.org/drm/intel/issues/4235>) +1
> other test skip
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90.html>
> (i915#4235 <https://gitlab.freedesktop.org/drm/intel/issues/4235>)
>
> *
>
> igt@kms_setmode@basic-clone-single-crtc:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_setmode@basic-clone-single-crtc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#8809 <https://gitlab.freedesktop.org/drm/intel/issues/8809>)
>
> *
>
> igt@kms_sysfs_edid_timing:
>
> o shard-dg1: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@kms_sysfs_edid_timing.html>
> (IGT#2
> <https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2> /
> i915#6493 <https://gitlab.freedesktop.org/drm/intel/issues/6493>)
> *
>
> igt@kms_tiled_display@basic-test-pattern:
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@kms_tiled_display@basic-test-pattern.html>
> (i915#8623 <https://gitlab.freedesktop.org/drm/intel/issues/8623>)
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html>
> (i915#8623 <https://gitlab.freedesktop.org/drm/intel/issues/8623>)
>
> *
>
> igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html>
> (i915#9196 <https://gitlab.freedesktop.org/drm/intel/issues/9196>)
> *
>
> igt@kms_universal_plane@universal-plane-sanity:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_universal_plane@universal-plane-sanity.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +15
> other tests skip
> *
>
> igt@kms_writeback@writeback-fb-id:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/intel/issues/2437>) +1
> other test skip
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
>
> *
>
> igt@perf@gen8-unprivileged-single-ctx-counters:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html>
> (i915#2436 <https://gitlab.freedesktop.org/drm/intel/issues/2436>)
> *
>
> igt@perf@global-sseu-config-invalid:
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html>
> (i915#7387 <https://gitlab.freedesktop.org/drm/intel/issues/7387>)
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@perf@global-sseu-config-invalid.html>
> (i915#7387 <https://gitlab.freedesktop.org/drm/intel/issues/7387>)
>
> *
>
> igt@perf_pmu@busy-double-start@ccs0:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html>
> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>)
> *
>
> igt@perf_pmu@cpu-hotplug:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html>
> (i915#8850 <https://gitlab.freedesktop.org/drm/intel/issues/8850>)
> *
>
> igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>
> o shard-dg2: NOTRUN -> CRASH
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html>
> (i915#9351 <https://gitlab.freedesktop.org/drm/intel/issues/9351>)
> *
>
> igt@prime_udl:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-5/igt@prime_udl.html>
> (fdo#109291 <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
> *
>
> igt@prime_vgem@coherency-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@prime_vgem@coherency-gtt.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708> /
> i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1
> other test skip
> *
>
> igt@prime_vgem@fence-read-hang:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@prime_vgem@fence-read-hang.html>
> (fdo#109295
> <https://bugs.freedesktop.org/show_bug.cgi?id=109295> /
> i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>)
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-19/igt@prime_vgem@fence-read-hang.html>
> (i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>)
>
> *
>
> igt@v3d/v3d_perfmon@create-perfmon-0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-15/igt@v3d/v3d_perfmon@create-perfmon-0.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3
> other tests skip
> *
>
> igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +12
> other tests skip
> *
>
> igt@v3d/v3d_submit_cl@simple-flush-cache:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html>
> (fdo#109315
> <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +7
> other tests skip
> *
>
> igt@v3d/v3d_submit_cl@valid-submission:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-4/igt@v3d/v3d_submit_cl@valid-submission.html>
> (fdo#109315
> <https://bugs.freedesktop.org/show_bug.cgi?id=109315> /
> i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>)
> *
>
> igt@v3d/v3d_submit_csd@bad-bo:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-bo.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +4
> other tests skip
> *
>
> igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3
> other tests skip
> *
>
> igt@vc4/vc4_tiling@set-get:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@vc4/vc4_tiling@set-get.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +8
> other tests skip
> *
>
> igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-5/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html>
> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>)
> *
>
> igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +4
> other tests skip
>
> o
>
> shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +2
> other tests skip
>
>
> Possible fixes
>
> *
>
> igt@fbdev@nullptr:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@fbdev@nullptr.html>
> (i915#2582
> <https://gitlab.freedesktop.org/drm/intel/issues/2582>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@fbdev@nullptr.html>
> +1 other test pass
> *
>
> igt@gem_create@create-ext-cpu-access-big:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html>
> (i915#9364
> <https://gitlab.freedesktop.org/drm/intel/issues/9364>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html>
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_eio@unwedge-stress.html>
> (i915#5784
> <https://gitlab.freedesktop.org/drm/intel/issues/5784>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-16/igt@gem_eio@unwedge-stress.html>
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o
>
> shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
>
> o
>
> shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html>
>
> *
>
> igt@gem_exec_fair@basic-pace@rcs0:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html>
> *
>
> {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html>
> (i915#3591
> <https://gitlab.freedesktop.org/drm/intel/issues/3591>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html>
> *
>
> igt@i915_selftest@live@gem_contexts:
>
> o shard-mtlp: DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html>
> *
>
> igt@i915_suspend@basic-s3-without-i915:
>
> o shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html>
> (fdo#103375
> <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html>
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html>
> (i915#3743
> <https://gitlab.freedesktop.org/drm/intel/issues/3743>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html>
> +1 other test pass
> *
>
> igt@kms_color@degamma@pipe-a:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_color@degamma@pipe-a.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_color@degamma@pipe-a.html>
> +11 other tests pass
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html>
> +17 other tests pass
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html>
> (i915#6880
> <https://gitlab.freedesktop.org/drm/intel/issues/6880>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html>
> +1 other test pass
> *
>
> igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html>
> +13 other tests pass
> *
>
> {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/intel/issues/9519>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html>
> *
>
> {igt@kms_pm_rpm@fences}:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_pm_rpm@fences.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_pm_rpm@fences.html>
> *
>
> igt@kms_properties@plane-properties-atomic:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_properties@plane-properties-atomic.html>
> +2 other tests pass
> *
>
> igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html>
> (i915#9196
> <https://gitlab.freedesktop.org/drm/intel/issues/9196>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html>
> *
>
> igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html>
> (i915#9196
> <https://gitlab.freedesktop.org/drm/intel/issues/9196>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html>
> *
>
> igt@perf_pmu@multi-client@vcs0:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@multi-client@vcs0.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/intel/issues/4349>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-2/igt@perf_pmu@multi-client@vcs0.html>
> *
>
> igt@perf_pmu@render-node-busy-idle@vcs1:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/intel/issues/4349>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg1-12/igt@perf_pmu@render-node-busy-idle@vcs1.html>
> +2 other tests pass
> *
>
> igt@prime_vgem@fence-wait@vcs1:
>
> o shard-mtlp: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@prime_vgem@fence-wait@vcs1.html>
> *
>
> igt@prime_vgem@fence-wait@vecs0:
>
> o shard-mtlp: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html>
> (i915#8875
> <https://gitlab.freedesktop.org/drm/intel/issues/8875>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-7/igt@prime_vgem@fence-wait@vecs0.html>
>
>
> Warnings
>
> *
>
> igt@kms_async_flips@crc@pipe-a-edp-1:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@kms_async_flips@crc@pipe-a-edp-1.html>
> (i915#8247
> <https://gitlab.freedesktop.org/drm/intel/issues/8247>) ->
> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html>
> (i915#8561 <https://gitlab.freedesktop.org/drm/intel/issues/8561>)
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/intel/issues/1769> /
> i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
> *
>
> igt@kms_big_fb@4-tiled-16bpp-rotate-0:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +6
> other tests skip
> *
>
> igt@kms_big_fb@4-tiled-64bpp-rotate-180:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +5
> other tests skip
> *
>
> igt@kms_big_fb@linear-8bpp-rotate-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html>
> (fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614> /
> i915#3638
> <https://gitlab.freedesktop.org/drm/intel/issues/3638>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +5
> other tests skip
> *
>
> igt@kms_big_fb@y-tiled-8bpp-rotate-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html>
> (fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614> /
> i915#3638
> <https://gitlab.freedesktop.org/drm/intel/issues/3638>) +1
> other test skip
> *
>
> igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html>
> (fdo#110723
> <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +7
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html>
> (fdo#110723
> <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +7
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-addfb:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb.html>
> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-1:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html>
> (i915#3116
> <https://gitlab.freedesktop.org/drm/intel/issues/3116>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
> *
>
> igt@kms_content_protection@type1:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_content_protection@type1.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/intel/issues/7118> /
> i915#7162
> <https://gitlab.freedesktop.org/drm/intel/issues/7162>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-1/igt@kms_content_protection@type1.html>
> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>)
> *
>
> igt@kms_cursor_crc@cursor-random-512x170:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html>
> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-512x170:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html>
> (i915#3359
> <https://gitlab.freedesktop.org/drm/intel/issues/3359>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +1
> other test skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x10:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +3
> other tests skip
> *
>
> igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +5
> other tests skip
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +3
> other tests skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html>
> (fdo#111767
> <https://bugs.freedesktop.org/show_bug.cgi?id=111767> /
> fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
> *
>
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/intel/issues/4103>) +1
> other test skip
> *
>
> igt@kms_dsc@dsc-with-bpc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#3840
> <https://gitlab.freedesktop.org/drm/intel/issues/3840>) +1
> other test skip
> *
>
> igt@kms_force_connector_basic@force-load-detect:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html>
> (fdo#109285
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html>
> (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> /
> i915#1825
> <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +27
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1
> other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html>
> (i915#3023
> <https://gitlab.freedesktop.org/drm/intel/issues/3023>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +26
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> /
> i915#1825
> <https://gitlab.freedesktop.org/drm/intel/issues/1825>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +33
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html>
> (i915#3023
> <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +21
> other tests skip
> *
>
> igt@kms_hdr@invalid-hdr:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_hdr@invalid-hdr.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_hdr@invalid-hdr.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
> *
>
> igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html>
> (i915#4816
> <https://gitlab.freedesktop.org/drm/intel/issues/4816>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html>
> (i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#4816 <https://gitlab.freedesktop.org/drm/intel/issues/4816>)
> *
>
> igt@kms_plane_scaling@2x-scaler-multi-pipe:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> /
> i915#8152 <https://gitlab.freedesktop.org/drm/intel/issues/8152>)
> *
>
> igt@kms_psr@psr2_basic:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-3/igt@kms_psr@psr2_basic.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9732
> <https://gitlab.freedesktop.org/drm/intel/issues/9732>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-11/igt@kms_psr@psr2_basic.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9736 <https://gitlab.freedesktop.org/drm/intel/issues/9736>)
> *
>
> igt@kms_psr@psr2_cursor_mmap_gtt:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9736
> <https://gitlab.freedesktop.org/drm/intel/issues/9736>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-dg2-5/igt@kms_psr@psr2_cursor_mmap_gtt.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9732
> <https://gitlab.freedesktop.org/drm/intel/issues/9732>) +1
> other test skip
> *
>
> igt@kms_psr@psr2_dpms:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_psr@psr2_dpms.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9732
> <https://gitlab.freedesktop.org/drm/intel/issues/9732>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_psr@psr2_dpms.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673>) +2
> other tests skip
> *
>
> igt@kms_psr@psr2_sprite_mmap_gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_psr@psr2_sprite_mmap_gtt.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-4/igt@kms_psr@psr2_sprite_mmap_gtt.html>
> (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673> /
> i915#9732
> <https://gitlab.freedesktop.org/drm/intel/issues/9732>) +4
> other tests skip
> *
>
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/intel/issues/5289>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
> i915#5289
> <https://gitlab.freedesktop.org/drm/intel/issues/5289>) +1
> other test skip
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
> i915#5289
> <https://gitlab.freedesktop.org/drm/intel/issues/5289>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) +1
> other test skip
> *
>
> igt@kms_vrr@negative-basic:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_vrr@negative-basic.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/shard-rkl-6/igt@kms_vrr@negative-basic.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +3
> other tests skip
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7612 -> IGTPW_10311
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_13955: d835c627d25ba8775624ff3e854d034708044ac3 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10311:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10311/index.html
> IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
[-- Attachment #2: Type: text/html, Size: 164939 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-12-05 12:15 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-30 18:01 [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Nirmoy Das
2023-11-30 19:52 ` [igt-dev] ✓ Fi.CI.BAT: success for test/xe_spin_batch: Add spin-fixed-duration-with-preempter (rev3) Patchwork
2023-11-30 22:54 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-12-01 20:57 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-12-05 12:15 ` Nirmoy Das
2023-12-04 10:15 ` [igt-dev] [PATCH v2 i-g-t] test/xe_spin_batch: Add spin-fixed-duration-with-preempter Kumar, Janga Rahul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox