* [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo
@ 2023-09-14 9:38 Tejas Upadhyay
2023-09-14 12:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tejas Upadhyay @ 2023-09-14 9:38 UTC (permalink / raw)
To: igt-dev; +Cc: Tejas Upadhyay, intel-xe
Add tests to verify fdinfo published by xe KMD with
following subtests :
@basic
@drm-total-residents
@drm-shared
@drm-active
Example fdinfo format:
pos: 0
flags: 0100002
mnt_id: 23
ino: 1140
drm-driver: xe
drm-client-id: 19
drm-pdev: 0000:4d:00.0
drm-total-system: 0
drm-shared-system: 0
drm-active-system: 0
drm-resident-system: 0
drm-purgeable-system: 0
drm-total-gtt: 4 KiB
drm-shared-gtt: 0
drm-active-gtt: 0
drm-resident-gtt: 4 KiB
drm-total-vram0: 20 KiB
drm-shared-vram0: 0
drm-active-vram0: 0
drm-resident-vram0: 20 KiB
drm-total-vram1: 20 KiB
drm-shared-vram1: 0
drm-active-vram1: 0
drm-resident-vram1: 20 KiB
TODO: drm-purgeable test is not possbile as we consider objects in
system memory to be purgeable but current xe KMD does not allow
BOs to be created in system memory (instead KMD creates it in
XE_PL_TT which is VRAM backed system memory).
V3:
- Expand basic test - Rahul
- Use defined var at all places - Rahul
- Update commit message - Rahul
- Adapt spin_init API change
V2:
- Replace printf with igt_info - Kamil
- run checkpatch - Kamil
- use igt_assert_f - Kamil
Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
---
tests/intel/xe_drm_fdinfo.c | 289 ++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 290 insertions(+)
create mode 100644 tests/intel/xe_drm_fdinfo.c
diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c
new file mode 100644
index 000000000..53107438e
--- /dev/null
+++ b/tests/intel/xe_drm_fdinfo.c
@@ -0,0 +1,289 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include "igt.h"
+#include "igt_core.h"
+#include "igt_device.h"
+#include "igt_drm_fdinfo.h"
+#include "lib/igt_syncobj.h"
+#include "xe_drm.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
+/**
+ * TEST: xe drm fdinfo
+ * Description: Read and verify drm client memory consumption using fdinfo
+ * Feature: SMI, core
+ * Category: Software building block
+ * Sub-category: driver
+ * Functionality: Per client memory statistics
+ * Run type: FULL
+ * Test category: SysMan
+ *
+ * SUBTEST: basic
+ * Description: Check if basic fdinfo content is present
+ *
+ * SUBTEST: drm-total-resident
+ * Description: Create and compare total and resident memory consumption by client
+ *
+ * SUBTEST: drm-shared
+ * Description: Create and compare shared memory consumption by client
+ *
+ * SUBTEST: drm-active
+ * Description: Create and compare active memory consumption by client
+ */
+
+IGT_TEST_DESCRIPTION("Read and verify drm client memory consumption using fdinfo");
+
+#define BO_SIZE (65536)
+
+/* Subtests */
+static void test_active(int fd, struct drm_xe_engine_class_instance *eci)
+{
+ struct drm_client_fdinfo info = { };
+ uint32_t vm;
+ uint64_t addr = 0x1a0000;
+ struct drm_xe_sync sync[2] = {
+ { .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL, },
+ { .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL, },
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 2,
+ .syncs = to_user_pointer(sync),
+ };
+#define N_EXEC_QUEUES 2
+ uint32_t exec_queues[N_EXEC_QUEUES];
+ uint32_t bind_exec_queues[N_EXEC_QUEUES];
+ uint32_t syncobjs[N_EXEC_QUEUES + 1];
+ size_t bo_size;
+ uint32_t bo = 0;
+ int region = 0x2; /* VRAM 0 */
+ struct {
+ struct xe_spin spin;
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ } *data;
+ struct xe_spin_opts spin_opts = { .preempt = true };
+ int i, b;
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
+ bo_size = sizeof(*data) * N_EXEC_QUEUES;
+ bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
+ xe_get_default_alignment(fd));
+ bo = xe_bo_create_flags(fd, vm, bo_size,
+ region);
+ data = xe_bo_map(fd, bo, bo_size);
+
+ for (i = 0; i < N_EXEC_QUEUES; i++) {
+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
+ bind_exec_queues[i] = xe_bind_exec_queue_create(fd, vm, 0);
+ syncobjs[i] = syncobj_create(fd, 0);
+ }
+ syncobjs[N_EXEC_QUEUES] = syncobj_create(fd, 0);
+
+ sync[0].handle = syncobj_create(fd, 0);
+ xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr, bo_size,
+ sync, 1);
+
+ for (i = 0; i < N_EXEC_QUEUES; i++) {
+ uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
+ uint64_t spin_addr = addr + spin_offset;
+ int e = i;
+
+ if (i == 0) {
+ /* Cork 1st exec_queue with a spinner */
+ spin_opts.addr = spin_addr;
+ xe_spin_init(&data[i].spin, &spin_opts);
+ exec.exec_queue_id = exec_queues[e];
+ exec.address = spin_opts.addr;
+ sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
+ sync[1].flags |= DRM_XE_SYNC_SIGNAL;
+ sync[1].handle = syncobjs[e];
+ xe_exec(fd, &exec);
+ xe_spin_wait_started(&data[i].spin);
+
+ addr += bo_size;
+ sync[1].flags &= ~DRM_XE_SYNC_SIGNAL;
+ sync[1].handle = syncobjs[e];
+ xe_vm_bind_async(fd, vm, bind_exec_queues[e], bo, 0, addr,
+ bo_size, sync + 1, 1);
+ addr += bo_size;
+ } else {
+ sync[0].flags |= DRM_XE_SYNC_SIGNAL;
+ xe_vm_bind_async(fd, vm, bind_exec_queues[e], bo, 0, addr,
+ bo_size, sync, 1);
+ }
+
+ b = igt_parse_drm_fdinfo(fd, &info, NULL, 0, NULL, 0);
+ igt_assert_f(b != 0, "failed with err:%d\n", errno);
+
+ /* Client memory consumption includes public objects
+ * as well as internal objects hence if bo is active on
+ * N_EXEC_QUEUES consumption should be
+ * >= bo_size + bo_size * N_EXEC_QUEUES
+ */
+ igt_info("info.total:%ld active:%ld bo_size:%ld\n",
+ info.region_mem[region].total,
+ info.region_mem[region].active, bo_size);
+ igt_assert(info.region_mem[region].active >=
+ bo_size + bo_size * N_EXEC_QUEUES);
+ }
+ xe_spin_end(&data[0].spin);
+
+ syncobj_destroy(fd, sync[0].handle);
+ sync[0].handle = syncobj_create(fd, 0);
+ sync[0].flags |= DRM_XE_SYNC_SIGNAL;
+ xe_vm_unbind_all_async(fd, vm, 0, bo, sync, 1);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ syncobj_destroy(fd, sync[0].handle);
+ for (i = 0; i < N_EXEC_QUEUES; i++) {
+ syncobj_destroy(fd, syncobjs[i]);
+ xe_exec_queue_destroy(fd, exec_queues[i]);
+ xe_exec_queue_destroy(fd, bind_exec_queues[i]);
+ }
+
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+ xe_vm_destroy(fd, vm);
+}
+
+static void test_shared(int xe)
+{
+ struct drm_client_fdinfo info = { };
+ struct drm_gem_flink flink;
+ struct drm_gem_open open_struct;
+ uint32_t bo;
+ int region = 0x1;
+ int ret, expected_size = 2 * BO_SIZE;
+
+ bo = xe_bo_create_flags(xe, 0, BO_SIZE, region);
+
+ flink.handle = bo;
+ ret = igt_ioctl(xe, DRM_IOCTL_GEM_FLINK, &flink);
+ igt_assert_eq(ret, 0);
+
+ open_struct.name = flink.name;
+ ret = igt_ioctl(xe, DRM_IOCTL_GEM_OPEN, &open_struct);
+ igt_assert_eq(ret, 0);
+ igt_assert(open_struct.handle != 0);
+
+ ret = igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0);
+ igt_assert_f(ret != 0, "failed with err:%d\n", errno);
+
+ igt_info("info.total:%ld shared:%ld\n",
+ info.region_mem[region].total,
+ info.region_mem[region].shared);
+ igt_assert_eq(info.region_mem[region].shared,
+ expected_size);
+
+ gem_close(xe, open_struct.handle);
+ gem_close(xe, bo);
+}
+
+static void test_total_resident(int xe)
+{
+ struct drm_xe_query_mem_region *memregion;
+ uint64_t memreg = all_memory_regions(xe), region;
+ struct drm_client_fdinfo info = { };
+ uint32_t vm;
+ uint32_t handle;
+ uint64_t addr = 0x1a0000;
+ int ret;
+
+ vm = xe_vm_create(xe, DRM_XE_VM_CREATE_SCRATCH_PAGE, 0);
+
+ xe_for_each_mem_region(xe, memreg, region) {
+ memregion = xe_mem_region(xe, region);
+
+ handle = xe_bo_create_flags(xe, vm, BO_SIZE, region);
+ xe_vm_bind_sync(xe, vm, handle, 0, addr, BO_SIZE);
+
+ ret = igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0);
+ igt_assert_f(ret != 0, "failed with err:%d\n", errno);
+ /* currently xe KMD maps memory class system region to
+ * XE_PL_TT thus we need memregion->instance + 1
+ */
+ igt_info("info.total:%ld resident:%ld for region: %d bo_size:%d\n",
+ info.region_mem[memregion->instance + 1].total,
+ info.region_mem[memregion->instance + 1].resident,
+ memregion->instance, BO_SIZE);
+ /* Client memory consumption includes public objects
+ * as well as internal objects hence it should be
+ * >= BO_SIZE
+ */
+ igt_assert(info.region_mem[memregion->instance + 1].total >=
+ BO_SIZE);
+ igt_assert(info.region_mem[memregion->instance + 1].resident >=
+ BO_SIZE);
+ xe_vm_unbind_sync(xe, vm, 0, addr, BO_SIZE);
+ gem_close(xe, handle);
+ }
+
+ xe_vm_destroy(xe, vm);
+}
+
+static void basic(int xe)
+{
+ struct drm_xe_query_mem_region *memregion;
+ uint64_t memreg = all_memory_regions(xe), region;
+ struct drm_client_fdinfo info = { };
+ unsigned int ret;
+
+ ret = igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0);
+ igt_assert_f(ret != 0, "failed with err:%d\n", errno);
+
+ igt_assert(!strcmp(info.driver, "xe"));
+
+ xe_for_each_mem_region(xe, memreg, region) {
+ memregion = xe_mem_region(xe, region);
+ igt_assert(info.region_mem[memregion->instance + 1].total >=
+ 0);
+ igt_assert(info.region_mem[memregion->instance + 1].shared >=
+ 0);
+ igt_assert(info.region_mem[memregion->instance + 1].resident >=
+ 0);
+ igt_assert(info.region_mem[memregion->instance + 1].active >=
+ 0);
+ if (memregion->instance == 0)
+ igt_assert(info.region_mem[memregion->instance].purgeable >=
+ 0);
+ }
+}
+
+igt_main
+{
+ int xe;
+
+ igt_fixture {
+ struct drm_client_fdinfo info = { };
+
+ xe = drm_open_driver(DRIVER_XE);
+ igt_require_xe(xe);
+ igt_require(igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0));
+ }
+
+ igt_describe("Check if basic fdinfo content is present");
+ igt_subtest("basic")
+ basic(xe);
+
+ igt_describe("Create and compare total and resident memory consumption by client");
+ igt_subtest("drm-total-resident")
+ test_total_resident(xe);
+
+ igt_describe("Create and compare shared memory consumption by client");
+ igt_subtest("drm-shared")
+ test_shared(xe);
+
+ igt_describe("Create and compare active memory consumption by client");
+ igt_subtest("drm-active")
+ test_active(xe, xe_hw_engine(xe, 0));
+
+ igt_fixture {
+ drm_close_driver(xe);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 7201958b7..5d5bee6e3 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -276,6 +276,7 @@ intel_xe_progs = [
'xe_compute',
'xe_dma_buf_sync',
'xe_debugfs',
+ 'xe_drm_fdinfo',
'xe_evict',
'xe_exec_balancer',
'xe_exec_basic',
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3)
2023-09-14 9:38 [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Tejas Upadhyay
@ 2023-09-14 12:33 ` Patchwork
2023-09-14 12:46 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-09-14 12:33 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1871 bytes --]
== Series Details ==
Series: tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3)
URL : https://patchwork.freedesktop.org/series/123264/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7487_BAT -> XEIGTPW_9785_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_9785_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [FAIL][1] ([Intel XE#480]) -> [PASS][2] +2 other tests pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7487/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9785/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
Build changes
-------------
* IGT: IGT_7487 -> IGTPW_9785
* Linux: xe-372-baea10eb27d49a2b8a526d87a70532ab201d140b -> xe-373-aeac46cfaebff413254ac07837b97370c7ed3957
IGTPW_9785: 9785
IGT_7487: 77e606dea60110c869ad9f9cc88994a0048845c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-372-baea10eb27d49a2b8a526d87a70532ab201d140b: baea10eb27d49a2b8a526d87a70532ab201d140b
xe-373-aeac46cfaebff413254ac07837b97370c7ed3957: aeac46cfaebff413254ac07837b97370c7ed3957
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9785/index.html
[-- Attachment #2: Type: text/html, Size: 2383 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3)
2023-09-14 9:38 [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Tejas Upadhyay
2023-09-14 12:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3) Patchwork
@ 2023-09-14 12:46 ` Patchwork
2023-09-14 16:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-09-14 20:08 ` [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Kumar, Janga Rahul
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-09-14 12:46 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10252 bytes --]
== Series Details ==
Series: tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3)
URL : https://patchwork.freedesktop.org/series/123264/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13631 -> IGTPW_9785
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-dg2-11
Missing (2): bat-dg2-8 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9785 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@lmem0:
- bat-dg2-9: NOTRUN -> [INCOMPLETE][1] ([i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][2] ([i915#4083])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#6621])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][6] -> [INCOMPLETE][7] ([i915#7913])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-kbl-8809g: [PASS][8] -> [DMESG-FAIL][9] ([i915#5334] / [i915#7872])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/fi-kbl-8809g/igt@i915_selftest@live@gt_heartbeat.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/fi-kbl-8809g/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#6645])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4212]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#5190])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#4215] / [i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#3840])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([fdo#109285])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#5274])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [PASS][18] -> [FAIL][19] ([IGT#3] / [i915#6121])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#1845])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#1072]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#3555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#3708])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-11: NOTRUN -> [SKIP][24] ([i915#3708] / [i915#4077]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-dg2-11: NOTRUN -> [SKIP][25] ([i915#3291] / [i915#3708]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-11/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: [INCOMPLETE][26] ([i915#9275]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-kbl-soraka: [DMESG-FAIL][28] ([i915#5334] / [i915#7872]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [ABORT][30] ([i915#9262]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/bat-mtlp-8/igt@i915_selftest@live@requests.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/bat-mtlp-8/igt@i915_selftest@live@requests.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- fi-tgl-1115g4: [INCOMPLETE][32] ([i915#7443] / [i915#8102]) -> [INCOMPLETE][33] ([i915#7443])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[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#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7487 -> IGTPW_9785
CI-20190529: 20190529
CI_DRM_13631: 65f58e6d5ef4a6ae008173febe1cbc6edd5d9164 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9785: 9785
IGT_7487: 77e606dea60110c869ad9f9cc88994a0048845c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_drm_fdinfo@basic
+igt@xe_drm_fdinfo@drm-active
+igt@xe_drm_fdinfo@drm-shared
+igt@xe_drm_fdinfo@drm-total-resident
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/index.html
[-- Attachment #2: Type: text/html, Size: 11987 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3)
2023-09-14 9:38 [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Tejas Upadhyay
2023-09-14 12:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3) Patchwork
2023-09-14 12:46 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-09-14 16:00 ` Patchwork
2023-09-14 20:08 ` [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Kumar, Janga Rahul
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-09-14 16:00 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3)
URL : https://patchwork.freedesktop.org/series/123264/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13631_full -> IGTPW_9785_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9785_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9785_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9785/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9785_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_lmem_swapping@verify-ccs.html
* igt@i915_selftest@live@objects:
- shard-dg2: [PASS][2] -> [FAIL][3] +20 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-10/igt@i915_selftest@live@objects.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@i915_selftest@live@objects.html
* igt@kms_cursor_crc@cursor-alpha-opaque@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@kms_cursor_crc@cursor-alpha-opaque@pipe-d-edp-1.html
Known issues
------------
Here are the changes found in IGTPW_9785_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@debugfs_test@basic-hwmon.html
* igt@drm_buddy@drm_buddy_test:
- shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#8661])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb1/igt@drm_buddy@drm_buddy_test.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@basics:
- shard-dg2: [PASS][10] -> [SKIP][11] ([i915#5608]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@drm_fdinfo@basics.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@drm_fdinfo@basics.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +22 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@gem_caching@reads.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#9283])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-mtlp: NOTRUN -> [ABORT][18] ([i915#9262]) +7 other tests abort
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
- shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#9162])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-mtlp: NOTRUN -> [DMESG-WARN][20] ([i915#9262]) +1 other test dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][21] ([fdo#109314])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hostile:
- shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb4/igt@gem_ctx_persistence@engines-hostile.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-17/igt@gem_eio@kms.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][32] ([i915#2842]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3711])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#7697]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][40] ([fdo#112283]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@gem_exec_params@secure-non-master.html
- shard-rkl: NOTRUN -> [SKIP][41] ([fdo#112283])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +10 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#2190])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4565])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8289])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@short-mmap:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-10/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy-xy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +12 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +12 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@gem_mmap_wc@copy.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-14/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@gem_pread@snoop.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +8 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2575] / [i915#5190])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4885])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3323])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4958])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][80] ([i915#3318])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@gem_userptr_blits@vma-merge.html
- shard-snb: NOTRUN -> [FAIL][81] ([i915#2724])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb2/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][82] ([i915#3318])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gen3_render_linear_blits.html
* igt@gen3_render_tiledy_blits:
- shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109289]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@basic-allowed:
- shard-dg1: NOTRUN -> [SKIP][85] ([fdo#109289])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-13/igt@gen7_exec_parse@basic-allowed.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#6227])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb4/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][91] -> [DMESG-WARN][92] ([i915#7061] / [i915#8617])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][93] ([i915#8489] / [i915#8668])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6412])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#8399])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6590]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [PASS][97] -> [SKIP][98] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#1397]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#1397])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][101] -> [SKIP][102] ([i915#1397])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][103] ([fdo#109506]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#6621])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#6245])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5723])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gt_engines:
- shard-mtlp: NOTRUN -> [FAIL][108] ([i915#9278] / [i915#9290])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@gt_pm:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][109] ([i915#9270])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@migrate:
- shard-dg2: [PASS][110] -> [FAIL][111] ([i915#7913]) +15 other tests fail
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-10/igt@i915_selftest@live@migrate.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][112] ([i915#9311] / [i915#9312])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [PASS][113] -> [FAIL][114] ([fdo#103375]) +3 other tests fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@i915_suspend@basic-s3-without-i915.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#5190])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][118] ([i915#8247]) +3 other tests fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][119] ([i915#8561]) +2 other tests dmesg-fail
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][120] ([i915#8247])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][121] ([i915#8247]) +3 other tests fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#1769])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5286])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][126] ([fdo#111614] / [i915#3638]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111614]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111614]) +9 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190]) +14 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][130] -> [FAIL][131] ([i915#3743])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111615]) +15 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6187]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111615])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +6 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#2705])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#2705])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_big_joiner@invalid-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#2705]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-15/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-5/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#5354] / [i915#6095])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3734] / [i915#5354] / [i915#6095])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +33 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-10/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#5354] / [i915#6095]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@kms_ccs@pipe-b-ccs-on-another-bo-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3886] / [i915#5354] / [i915#6095])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-18/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3886] / [i915#6095]) +12 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#3689] / [i915#3886] / [i915#5354]) +11 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-10/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#5354]) +22 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#3689] / [i915#5354]) +18 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4087] / [i915#7213])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#7213] / [i915#9010]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3742])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#4087]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-tglu: NOTRUN -> [SKIP][160] ([fdo#111827])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][161] ([fdo#111827]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][162] ([fdo#111827]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#7828]) +9 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#7828]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#7828]) +11 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color@invalid-gamma-lut-sizes:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2575]) +48 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_color@invalid-gamma-lut-sizes.html
* igt@kms_concurrent@pipe-d:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#4070] / [i915#533] / [i915#6768]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@kms_concurrent@pipe-d.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][170] ([i915#7173])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#7118]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#7118])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8063])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555]) +6 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][177] ([fdo#109279] / [i915#3359])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8814]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3359]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3359])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274] / [fdo#111767] / [i915#5354])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-snb: NOTRUN -> [SKIP][184] ([fdo#109271] / [fdo#111767]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111767] / [i915#3546])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [PASS][186] -> [FAIL][187] ([i915#72])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3546]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4213]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-dg2: [PASS][191] -> [SKIP][192] ([i915#2575]) +33 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: NOTRUN -> [FAIL][193] ([i915#8248])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274] / [i915#5354]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][196] ([fdo#109274])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][197] -> [FAIL][198] ([i915#2346]) +1 other test fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9226] / [i915#9261]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#9227])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#9227])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#9227])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9227])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#9226] / [i915#9261]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#9226] / [i915#9261]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9226] / [i915#9261]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8827])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8812])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840] / [i915#9159])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#3469])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html
- shard-mtlp: [PASS][215] -> [ABORT][216] ([i915#9262]) +3 other tests abort
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-3/igt@kms_fbcon_fbt@psr-suspend.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][217] ([fdo#109274] / [i915#3637] / [i915#3966])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][218] ([fdo#109274]) +11 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][219] ([fdo#111767] / [fdo#111825]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][220] ([fdo#111767] / [i915#3637])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][221] ([fdo#109274] / [fdo#111767]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8381])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3637]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-apl: NOTRUN -> [SKIP][224] ([fdo#109271]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-apl6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#8381])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8810])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#2672]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8810]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][233] ([fdo#109285])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@kms_force_connector_basic@force-load-detect.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([fdo#109285])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][235] -> [SKIP][236] ([fdo#109315]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][237] ([fdo#109315]) +10 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: [PASS][238] -> [FAIL][239] ([i915#6880])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#8708]) +25 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#1825]) +34 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][242] ([fdo#111825]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109280]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3023]) +15 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][245] ([fdo#110189]) +5 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#8708]) +10 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5460])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#3458]) +22 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][250] ([fdo#111825] / [i915#1825]) +22 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#5354]) +62 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#8708]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#6118])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#4816])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1:
- shard-mtlp: [PASS][255] -> [DMESG-WARN][256] ([i915#9262])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#6953])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][258] -> [FAIL][259] ([i915#8292])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#5176]) +11 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#5176]) +7 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#5176]) +23 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#5176]) +9 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#5235]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#5235]) +19 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#5235]) +7 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#5235]) +7 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#6524] / [i915#6805])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#6524])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#658]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][271] ([fdo#111068] / [i915#658])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][272] ([fdo#109642] / [fdo#111068] / [i915#658])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#1072])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@kms_psr@cursor_blt.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#1072]) +5 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#1072]) +10 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#5461] / [i915#658])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#5461] / [i915#658])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-snb: NOTRUN -> [SKIP][278] ([fdo#109271]) +165 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-snb6/igt@kms_rotation_crc@bad-pixel-format.html
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#4235]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#4884])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#5289])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#4235] / [i915#5190])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#5289])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_dp_mst:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#8661]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@kms_selftest@drm_dp_mst.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8809])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#4098])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-tglu: [PASS][287] -> [FAIL][288] ([i915#9196])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
- shard-mtlp: NOTRUN -> [FAIL][289] ([i915#9196])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
* igt@kms_vblank@pipe-c-query-busy-hang:
- shard-apl: [PASS][290] -> [SKIP][291] ([fdo#109271])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-apl2/igt@kms_vblank@pipe-c-query-busy-hang.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-apl3/igt@kms_vblank@pipe-c-query-busy-hang.html
- shard-glk: [PASS][292] -> [SKIP][293] ([fdo#109271])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-glk7/igt@kms_vblank@pipe-c-query-busy-hang.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-glk4/igt@kms_vblank@pipe-c-query-busy-hang.html
* igt@kms_vblank@pipe-c-wait-forked-busy-hang:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#4070] / [i915#6768]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8808]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#2437])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2437]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-mtlp: NOTRUN -> [FAIL][298] ([i915#9259])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@per-context-mode-unprivileged:
- shard-tglu: NOTRUN -> [SKIP][299] ([fdo#109289]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-7/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][300] ([fdo#109289]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#5608])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][302] ([i915#4349]) +3 other tests fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#8850])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@multi-client@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][304] ([i915#4349]) +11 other tests fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@perf_pmu@multi-client@ccs0.html
* igt@perf_pmu@rc6@gt0:
- shard-mtlp: NOTRUN -> [ABORT][305] ([i915#9268] / [i915#9335])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-1/igt@perf_pmu@rc6@gt0.html
* igt@perf_pmu@rc6@other-idle-gt1:
- shard-mtlp: NOTRUN -> [INCOMPLETE][306] ([i915#9268])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-1/igt@perf_pmu@rc6@other-idle-gt1.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: NOTRUN -> [DMESG-WARN][307] ([i915#9335]) +5 other tests dmesg-warn
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-1/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][308] ([fdo#109291])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@prime_udl.html
- shard-rkl: NOTRUN -> [SKIP][309] ([fdo#109291])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@prime_udl.html
* igt@prime_vgem@basic-fence-blt:
- shard-mtlp: NOTRUN -> [FAIL][310] ([i915#8445]) +1 other test fail
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@prime_vgem@basic-fence-blt.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#3291] / [i915#3708]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3708] / [i915#4077]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#3708])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][314] ([fdo#109295] / [i915#3708]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#3708])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-7/igt@prime_vgem@fence-write-hang.html
* igt@sysfs_timeslice_duration@duration@vecs0:
- shard-mtlp: NOTRUN -> [FAIL][316] ([i915#9258]) +2 other tests fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@sysfs_timeslice_duration@duration@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][317] ([fdo#109307] / [i915#4818])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#2575])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-17/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-rkl: NOTRUN -> [SKIP][319] ([fdo#109315]) +8 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_cl@valid-submission:
- shard-tglu: NOTRUN -> [SKIP][320] ([fdo#109315] / [i915#2575]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@v3d/v3d_submit_cl@valid-submission.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#2575]) +16 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-4/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#7711]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-12/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#7711]) +15 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#2575]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#7711]) +8 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-3/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@unused-bo-1ns:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#7711]) +4 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-1/igt@vc4/vc4_wait_bo@unused-bo-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][327] ([i915#7742]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][329] ([i915#6268]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@hostile:
- shard-mtlp: [ABORT][331] ([i915#9262]) -> [PASS][332] +1 other test pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-5/igt@gem_ctx_persistence@hostile.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][333] ([i915#7975] / [i915#8213]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-3/igt@gem_eio@hibernate.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][335] ([i915#5784]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-15/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][337] ([i915#2842]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [FAIL][339] ([i915#2842]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][341] ([i915#5493]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [TIMEOUT][343] ([i915#5493]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_spin_batch@spin-each:
- shard-mtlp: [DMESG-FAIL][345] ([i915#8962] / [i915#9121]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-4/igt@gem_spin_batch@spin-each.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-5/igt@gem_spin_batch@spin-each.html
* igt@i915_hangman@gt-error-state-capture@vecs0:
- shard-mtlp: [DMESG-WARN][347] ([i915#9262]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-8/igt@i915_hangman@gt-error-state-capture@vecs0.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-7/igt@i915_hangman@gt-error-state-capture@vecs0.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [FAIL][349] ([i915#3591]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][351] ([i915#8717]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-10/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][353] ([i915#1397]) -> [PASS][354] +1 other test pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][355] ([i915#1397]) -> [PASS][356] +1 other test pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][357] ([i915#1397]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-13/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_suspend@forcewake:
- shard-dg2: [TIMEOUT][359] ([fdo#103375]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-5/igt@i915_suspend@forcewake.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@i915_suspend@forcewake.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][361] ([i915#3743]) -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-dg2: [INCOMPLETE][363] -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-tglu: [FAIL][365] ([i915#9295]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@psr2_sprite_plane_onoff:
- shard-mtlp: [FAIL][367] -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-4/igt@kms_psr@psr2_sprite_plane_onoff.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-6/igt@kms_psr@psr2_sprite_plane_onoff.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][369] ([i915#1731]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html
#### Warnings ####
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: [SKIP][371] ([i915#8555]) -> [SKIP][372] ([i915#2575])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_exec_fair@basic-flow:
- shard-dg2: [SKIP][373] ([i915#3539] / [i915#4852]) -> [SKIP][374] ([i915#2575])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@gem_exec_fair@basic-flow.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: [SKIP][375] ([i915#3539]) -> [SKIP][376] ([i915#2575])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@gem_exec_fair@basic-pace-solo.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_pread@bench:
- shard-dg2: [SKIP][377] ([i915#3282]) -> [SKIP][378] ([i915#2575])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@gem_pread@bench.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_pread@bench.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: [SKIP][379] ([i915#4270]) -> [SKIP][380] ([i915#2575])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-1/igt@gem_pxp@display-protected-crc.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: [SKIP][381] ([i915#4079]) -> [SKIP][382] ([i915#2575])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@gem_set_tiling_vs_gtt.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: [SKIP][383] ([i915#3297]) -> [SKIP][384] ([i915#2575]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][385] ([fdo#109289]) -> [SKIP][386] ([i915#2575])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-3/igt@gen3_mixed_blits.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: [SKIP][387] ([i915#2856]) -> [SKIP][388] ([i915#2575])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_pm_rpm@pm-caching:
- shard-dg2: [SKIP][389] ([i915#4077]) -> [SKIP][390] ([i915#5174])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@i915_pm_rpm@pm-caching.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@i915_pm_rpm@pm-caching.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: [SKIP][391] ([i915#5190]) -> [SKIP][392] ([fdo#109315] / [i915#5190]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2: [SKIP][393] ([i915#4538] / [i915#5190]) -> [SKIP][394] ([fdo#109315] / [i915#5190])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: [SKIP][395] ([i915#3689] / [i915#5354]) -> [SKIP][396] ([i915#2575]) +1 other test skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-dg2: [SKIP][397] ([i915#3689] / [i915#3886] / [i915#5354]) -> [SKIP][398] ([i915#2575]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: [SKIP][399] ([i915#5354]) -> [SKIP][400] ([i915#2575]) +4 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-3/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: [SKIP][401] ([i915#7828]) -> [SKIP][402] ([i915#2575])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][403] ([fdo#109274] / [i915#5354]) -> [SKIP][404] ([i915#2575]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][405] ([fdo#110189] / [i915#3955]) -> [SKIP][406] ([i915#3955]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: [SKIP][407] ([fdo#109274]) -> [SKIP][408] ([i915#2575])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][409] ([fdo#109285] / [i915#4098]) -> [SKIP][410] ([fdo#109285])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2: [SKIP][411] ([i915#5354]) -> [SKIP][412] ([fdo#109315]) +3 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][413] ([i915#8708]) -> [SKIP][414] ([fdo#109315]) +4 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-dg2: [SKIP][415] ([i915#3458]) -> [SKIP][416] ([fdo#109315]) +2 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][417] ([i915#1072]) -> [SKIP][418] ([i915#1072] / [i915#4078]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-19/igt@kms_psr@cursor_plane_move.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-12/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@cursor_render:
- shard-dg2: [SKIP][419] ([i915#1072]) -> [SKIP][420] ([fdo#109315])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@kms_psr@cursor_render.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_psr@cursor_render.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][421] ([i915#1072] / [i915#4078]) -> [SKIP][422] ([i915#1072]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg1-17/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2: [SKIP][423] ([i915#5190]) -> [SKIP][424] ([i915#2575] / [i915#5190])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: [SKIP][425] ([i915#3555]) -> [SKIP][426] ([i915#2575])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-2/igt@kms_vrr@flip-dpms.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@kms_vrr@flip-dpms.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][427] ([i915#5493]) -> [CRASH][428] ([i915#7331])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-write:
- shard-dg2: [SKIP][429] ([i915#3291] / [i915#3708]) -> [SKIP][430] ([i915#2575])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13631/shard-dg2-7/igt@prime_vgem@basic-write.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/shard-dg2-11/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9785/index.html
[-- Attachment #2: Type: text/html, Size: 114311 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo
2023-09-14 9:38 [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Tejas Upadhyay
` (2 preceding siblings ...)
2023-09-14 16:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-09-14 20:08 ` Kumar, Janga Rahul
3 siblings, 0 replies; 5+ messages in thread
From: Kumar, Janga Rahul @ 2023-09-14 20:08 UTC (permalink / raw)
To: Upadhyay, Tejas, igt-dev@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Upadhyay, Tejas <tejas.upadhyay@intel.com>
> Sent: Thursday, September 14, 2023 3:09 PM
> To: igt-dev@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org; Kumar, Janga Rahul
> <janga.rahul.kumar@intel.com>; Kamil Konieczny
> <kamil.konieczny@linux.intel.com>; Upadhyay, Tejas
> <tejas.upadhyay@intel.com>
> Subject: [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify
> fdinfo
>
> Add tests to verify fdinfo published by xe KMD with following subtests :
> @basic
> @drm-total-residents
> @drm-shared
> @drm-active
>
> Example fdinfo format:
>
> pos: 0
> flags: 0100002
> mnt_id: 23
> ino: 1140
> drm-driver: xe
> drm-client-id: 19
> drm-pdev: 0000:4d:00.0
> drm-total-system: 0
> drm-shared-system: 0
> drm-active-system: 0
> drm-resident-system: 0
> drm-purgeable-system: 0
> drm-total-gtt: 4 KiB
> drm-shared-gtt: 0
> drm-active-gtt: 0
> drm-resident-gtt: 4 KiB
> drm-total-vram0: 20 KiB
> drm-shared-vram0: 0
> drm-active-vram0: 0
> drm-resident-vram0: 20 KiB
> drm-total-vram1: 20 KiB
> drm-shared-vram1: 0
> drm-active-vram1: 0
> drm-resident-vram1: 20 KiB
>
> TODO: drm-purgeable test is not possbile as we consider objects in system
> memory to be purgeable but current xe KMD does not allow BOs to be
> created in system memory (instead KMD creates it in XE_PL_TT which is
> VRAM backed system memory).
>
> V3:
> - Expand basic test - Rahul
> - Use defined var at all places - Rahul
> - Update commit message - Rahul
> - Adapt spin_init API change
> V2:
> - Replace printf with igt_info - Kamil
> - run checkpatch - Kamil
> - use igt_assert_f - Kamil
>
> Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
> ---
> tests/intel/xe_drm_fdinfo.c | 289
> ++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 290 insertions(+)
> create mode 100644 tests/intel/xe_drm_fdinfo.c
>
> diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c new
> file mode 100644 index 000000000..53107438e
> --- /dev/null
> +++ b/tests/intel/xe_drm_fdinfo.c
> @@ -0,0 +1,289 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
> + */
> +
> +#include "igt.h"
> +#include "igt_core.h"
> +#include "igt_device.h"
> +#include "igt_drm_fdinfo.h"
> +#include "lib/igt_syncobj.h"
> +#include "xe_drm.h"
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
> +#include "xe/xe_spin.h"
> +/**
> + * TEST: xe drm fdinfo
> + * Description: Read and verify drm client memory consumption using
> +fdinfo
> + * Feature: SMI, core
> + * Category: Software building block
> + * Sub-category: driver
> + * Functionality: Per client memory statistics
> + * Run type: FULL
> + * Test category: SysMan
> + *
> + * SUBTEST: basic
> + * Description: Check if basic fdinfo content is present
> + *
> + * SUBTEST: drm-total-resident
> + * Description: Create and compare total and resident memory
> +consumption by client
> + *
> + * SUBTEST: drm-shared
> + * Description: Create and compare shared memory consumption by client
> + *
> + * SUBTEST: drm-active
> + * Description: Create and compare active memory consumption by client
> +*/
> +
> +IGT_TEST_DESCRIPTION("Read and verify drm client memory consumption
> +using fdinfo");
> +
> +#define BO_SIZE (65536)
> +
> +/* Subtests */
> +static void test_active(int fd, struct drm_xe_engine_class_instance
> +*eci) {
> + struct drm_client_fdinfo info = { };
> + uint32_t vm;
> + uint64_t addr = 0x1a0000;
> + struct drm_xe_sync sync[2] = {
> + { .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
> },
> + { .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
> },
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 2,
> + .syncs = to_user_pointer(sync),
> + };
> +#define N_EXEC_QUEUES 2
> + uint32_t exec_queues[N_EXEC_QUEUES];
> + uint32_t bind_exec_queues[N_EXEC_QUEUES];
> + uint32_t syncobjs[N_EXEC_QUEUES + 1];
> + size_t bo_size;
> + uint32_t bo = 0;
> + int region = 0x2; /* VRAM 0 */
> + struct {
> + struct xe_spin spin;
> + uint32_t batch[16];
> + uint64_t pad;
> + uint32_t data;
> + } *data;
> + struct xe_spin_opts spin_opts = { .preempt = true };
> + int i, b;
> +
> + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
> + bo_size = sizeof(*data) * N_EXEC_QUEUES;
> + bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
> + xe_get_default_alignment(fd));
> + bo = xe_bo_create_flags(fd, vm, bo_size,
> + region);
> + data = xe_bo_map(fd, bo, bo_size);
> +
> + for (i = 0; i < N_EXEC_QUEUES; i++) {
> + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
> + bind_exec_queues[i] = xe_bind_exec_queue_create(fd, vm,
> 0);
> + syncobjs[i] = syncobj_create(fd, 0);
> + }
> + syncobjs[N_EXEC_QUEUES] = syncobj_create(fd, 0);
> +
> + sync[0].handle = syncobj_create(fd, 0);
> + xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr,
> bo_size,
> + sync, 1);
> +
> + for (i = 0; i < N_EXEC_QUEUES; i++) {
> + uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> + uint64_t spin_addr = addr + spin_offset;
> + int e = i;
> +
> + if (i == 0) {
> + /* Cork 1st exec_queue with a spinner */
> + spin_opts.addr = spin_addr;
> + xe_spin_init(&data[i].spin, &spin_opts);
> + exec.exec_queue_id = exec_queues[e];
> + exec.address = spin_opts.addr;
> + sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
> + sync[1].flags |= DRM_XE_SYNC_SIGNAL;
> + sync[1].handle = syncobjs[e];
> + xe_exec(fd, &exec);
> + xe_spin_wait_started(&data[i].spin);
> +
> + addr += bo_size;
> + sync[1].flags &= ~DRM_XE_SYNC_SIGNAL;
> + sync[1].handle = syncobjs[e];
> + xe_vm_bind_async(fd, vm, bind_exec_queues[e], bo,
> 0, addr,
> + bo_size, sync + 1, 1);
> + addr += bo_size;
> + } else {
> + sync[0].flags |= DRM_XE_SYNC_SIGNAL;
> + xe_vm_bind_async(fd, vm, bind_exec_queues[e], bo,
> 0, addr,
> + bo_size, sync, 1);
> + }
> +
> + b = igt_parse_drm_fdinfo(fd, &info, NULL, 0, NULL, 0);
> + igt_assert_f(b != 0, "failed with err:%d\n", errno);
> +
> + /* Client memory consumption includes public objects
> + * as well as internal objects hence if bo is active on
> + * N_EXEC_QUEUES consumption should be
> + * >= bo_size + bo_size * N_EXEC_QUEUES
> + */
> + igt_info("info.total:%ld active:%ld bo_size:%ld\n",
> + info.region_mem[region].total,
> + info.region_mem[region].active, bo_size);
> + igt_assert(info.region_mem[region].active >=
> + bo_size + bo_size * N_EXEC_QUEUES);
Add a check for stats before the object creation.
> + }
> + xe_spin_end(&data[0].spin);
> +
> + syncobj_destroy(fd, sync[0].handle);
> + sync[0].handle = syncobj_create(fd, 0);
> + sync[0].flags |= DRM_XE_SYNC_SIGNAL;
> + xe_vm_unbind_all_async(fd, vm, 0, bo, sync, 1);
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0,
> NULL));
> +
> + syncobj_destroy(fd, sync[0].handle);
> + for (i = 0; i < N_EXEC_QUEUES; i++) {
> + syncobj_destroy(fd, syncobjs[i]);
> + xe_exec_queue_destroy(fd, exec_queues[i]);
> + xe_exec_queue_destroy(fd, bind_exec_queues[i]);
> + }
> +
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_vm_destroy(fd, vm);
> +}
> +
> +static void test_shared(int xe)
> +{
> + struct drm_client_fdinfo info = { };
> + struct drm_gem_flink flink;
> + struct drm_gem_open open_struct;
> + uint32_t bo;
> + int region = 0x1;
Can you comment here 0x1 corresponds to which region or use any predefined macros defined for regions.
Any specific reason why we are not testing for all regions?
> + int ret, expected_size = 2 * BO_SIZE;
Pls add comment why expected size is twice the BO_SIZE
> +
> + bo = xe_bo_create_flags(xe, 0, BO_SIZE, region);
> +
> + flink.handle = bo;
> + ret = igt_ioctl(xe, DRM_IOCTL_GEM_FLINK, &flink);
> + igt_assert_eq(ret, 0);
> +
> + open_struct.name = flink.name;
> + ret = igt_ioctl(xe, DRM_IOCTL_GEM_OPEN, &open_struct);
> + igt_assert_eq(ret, 0);
> + igt_assert(open_struct.handle != 0);
> +
> + ret = igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0);
> + igt_assert_f(ret != 0, "failed with err:%d\n", errno);
> +
> + igt_info("info.total:%ld shared:%ld\n",
> + info.region_mem[region].total,
> + info.region_mem[region].shared);
> + igt_assert_eq(info.region_mem[region].shared,
> + expected_size);
In this subtest as well, add a check before creation of shared object. If it is expected to be 0 add a check for it or
Do the difference of shared before and after object creation. Check for difference is same as expected same.
> +
> + gem_close(xe, open_struct.handle);
> + gem_close(xe, bo);
> +}
> +
> +static void test_total_resident(int xe) {
> + struct drm_xe_query_mem_region *memregion;
> + uint64_t memreg = all_memory_regions(xe), region;
> + struct drm_client_fdinfo info = { };
> + uint32_t vm;
> + uint32_t handle;
> + uint64_t addr = 0x1a0000;
> + int ret;
> +
> + vm = xe_vm_create(xe, DRM_XE_VM_CREATE_SCRATCH_PAGE, 0);
> +
> + xe_for_each_mem_region(xe, memreg, region) {
> + memregion = xe_mem_region(xe, region);
> +
> + handle = xe_bo_create_flags(xe, vm, BO_SIZE, region);
> + xe_vm_bind_sync(xe, vm, handle, 0, addr, BO_SIZE);
> +
> + ret = igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0);
> + igt_assert_f(ret != 0, "failed with err:%d\n", errno);
> + /* currently xe KMD maps memory class system region to
> + * XE_PL_TT thus we need memregion->instance + 1
> + */
> + igt_info("info.total:%ld resident:%ld for region: %d
> bo_size:%d\n",
> + info.region_mem[memregion->instance +
> 1].total,
> + info.region_mem[memregion->instance +
> 1].resident,
> + memregion->instance, BO_SIZE);
> + /* Client memory consumption includes public objects
> + * as well as internal objects hence it should be
> + * >= BO_SIZE
> + */
> + igt_assert(info.region_mem[memregion->instance + 1].total
> >=
> + BO_SIZE);
> + igt_assert(info.region_mem[memregion->instance +
> 1].resident >=
> + BO_SIZE);
Similar kind of checks needs to be added before the object creation as well, to check that the object created in this test has impacted the stats.
> + xe_vm_unbind_sync(xe, vm, 0, addr, BO_SIZE);
> + gem_close(xe, handle);
> + }
> +
> + xe_vm_destroy(xe, vm);
> +}
> +
> +static void basic(int xe)
> +{
> + struct drm_xe_query_mem_region *memregion;
> + uint64_t memreg = all_memory_regions(xe), region;
> + struct drm_client_fdinfo info = { };
> + unsigned int ret;
> +
> + ret = igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL, 0);
> + igt_assert_f(ret != 0, "failed with err:%d\n", errno);
> +
> + igt_assert(!strcmp(info.driver, "xe"));
> +
> + xe_for_each_mem_region(xe, memreg, region) {
> + memregion = xe_mem_region(xe, region);
> + igt_assert(info.region_mem[memregion->instance + 1].total
> >=
> + 0);
> + igt_assert(info.region_mem[memregion->instance +
> 1].shared >=
> + 0);
> + igt_assert(info.region_mem[memregion->instance +
> 1].resident >=
> + 0);
> + igt_assert(info.region_mem[memregion->instance + 1].active
> >=
> + 0);
> + if (memregion->instance == 0)
> + igt_assert(info.region_mem[memregion-
> >instance].purgeable >=
> + 0);
> + }
> +}
> +
> +igt_main
> +{
> + int xe;
> +
> + igt_fixture {
> + struct drm_client_fdinfo info = { };
> +
> + xe = drm_open_driver(DRIVER_XE);
> + igt_require_xe(xe);
> + igt_require(igt_parse_drm_fdinfo(xe, &info, NULL, 0, NULL,
> 0));
> + }
> +
> + igt_describe("Check if basic fdinfo content is present");
> + igt_subtest("basic")
> + basic(xe);
> +
> + igt_describe("Create and compare total and resident memory
> consumption by client");
> + igt_subtest("drm-total-resident")
> + test_total_resident(xe);
> +
> + igt_describe("Create and compare shared memory consumption by
> client");
> + igt_subtest("drm-shared")
> + test_shared(xe);
> +
> + igt_describe("Create and compare active memory consumption by
> client");
> + igt_subtest("drm-active")
> + test_active(xe, xe_hw_engine(xe, 0));
> +
> + igt_fixture {
> + drm_close_driver(xe);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build index
> 7201958b7..5d5bee6e3 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -276,6 +276,7 @@ intel_xe_progs = [
> 'xe_compute',
> 'xe_dma_buf_sync',
> 'xe_debugfs',
> + 'xe_drm_fdinfo',
> 'xe_evict',
> 'xe_exec_balancer',
> 'xe_exec_basic',
> --
> 2.25.1
With the above review comments addressed. Rest looks fine to me.
Reviewed-by: Janga Rahul Kumar<janga.rahul.kumar@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-14 20:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 9:38 [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo Tejas Upadhyay
2023-09-14 12:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/xe_drm_fdinfo: Add tests to read and verify fdinfo (rev3) Patchwork
2023-09-14 12:46 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-14 16:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-09-14 20:08 ` [igt-dev] [PATCH V3 i-g-t] tests/xe_drm_fdinfo: Add tests to read and verify fdinfo 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