* [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume.
@ 2024-02-23 6:51 sai.gowtham.ch
2024-02-23 7:55 ` Dandamudi, Priyanka
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: sai.gowtham.ch @ 2024-02-23 6:51 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Test validates vm bind functionality, by suspend and resuming the device
before and after binding VM to a VA.
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
---
tests/intel/xe_pm.c | 92 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 92 insertions(+)
diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c
index a0045da0b..f9d2ce421 100644
--- a/tests/intel/xe_pm.c
+++ b/tests/intel/xe_pm.c
@@ -550,9 +550,96 @@ static void test_mmap(device_t device, uint32_t placement, uint32_t flags)
close(fw_handle);
}
+/**
+ * SUBTEST: vm-bind
+ * Description: Validate vm bind functionality with suspend and resume
+ * Functionality: pm
+ * Run type: FULL
+ */
+static void vm_bind(device_t device, struct drm_xe_engine_class_instance *eci)
+{
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ struct data {
+ uint32_t batch[16];
+ uint32_t data;
+ uint64_t addr;
+ } *data;
+ uint32_t vm;
+ uint32_t exec_queue;
+ uint32_t bind_engine;
+ uint32_t syncobj;
+ size_t bo_size;
+ int value = 0x123456;
+ uint64_t addr = 0x100000;
+ uint32_t bo = 0;
+ int b = 0;
+ uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
+ uint64_t batch_addr = addr + batch_offset;
+ uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
+ uint64_t sdi_addr = addr + sdi_offset;
+
+ syncobj = syncobj_create(device.fd_xe, 0);
+ sync.handle = syncobj;
+
+ vm = xe_vm_create(device.fd_xe, 0, 0);
+ bo_size = sizeof(*data);
+ bo_size = xe_bb_size(device.fd_xe, bo_size);
+
+ bo = xe_bo_create(device.fd_xe, vm, bo_size,
+ vram_if_possible(device.fd_xe, eci->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+
+ exec_queue = xe_exec_queue_create(device.fd_xe, vm, eci, 0);
+ bind_engine = xe_bind_exec_queue_create(device.fd_xe, vm, 0);
+ xe_vm_bind_async(device.fd_xe, vm, bind_engine, bo, 0, addr, bo_size, &sync, 1);
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE);
+ data = xe_bo_map(device.fd_xe, bo, bo_size);
+
+ b = 0;
+ data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data->batch[b++] = sdi_addr;
+ data->batch[b++] = sdi_addr >> 32;
+ data->batch[b++] = value;
+ data->batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data->batch));
+
+ exec.exec_queue_id = exec_queue;
+ exec.address = batch_addr;
+ sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
+ xe_exec(device.fd_xe, &exec);
+
+ igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, NULL));
+ igt_assert_eq(data->data, value);
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE);
+
+ exec.exec_queue_id = exec_queue;
+ exec.address = batch_addr;
+ sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
+ xe_exec(device.fd_xe, &exec);
+
+ igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, NULL));
+ igt_assert_eq(data->data, value);
+
+ syncobj_destroy(device.fd_xe, syncobj);
+ munmap(data, bo_size);
+ gem_close(device.fd_xe, bo);
+
+ xe_exec_queue_destroy(device.fd_xe, exec_queue);
+ xe_vm_destroy(device.fd_xe, vm);
+}
+
igt_main
{
struct drm_xe_engine_class_instance *hwe;
+ struct drm_xe_engine *engine;
device_t device;
uint32_t d3cold_allowed;
int sysfs_fd;
@@ -693,6 +780,11 @@ igt_main
}
}
+ igt_subtest("vm-bind") {
+ engine = xe_engine(device.fd_xe, 1);
+ vm_bind(device, &engine->instance);
+ }
+
igt_fixture {
close(sysfs_fd);
igt_pm_set_d3cold_allowed(device.pci_slot_name, d3cold_allowed);
--
2.39.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* RE: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 6:51 [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume sai.gowtham.ch @ 2024-02-23 7:55 ` Dandamudi, Priyanka 2024-02-23 9:28 ` Ch, Sai Gowtham 2024-02-23 8:44 ` ✓ CI.xeBAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Dandamudi, Priyanka @ 2024-02-23 7:55 UTC (permalink / raw) To: Ch, Sai Gowtham, igt-dev@lists.freedesktop.org, Ch, Sai Gowtham > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > sai.gowtham.ch@intel.com > Sent: Friday, February 23, 2024 12:22 PM > To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham > <sai.gowtham.ch@intel.com> > Subject: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality > with suspend and resume. > > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test validates vm bind functionality, by suspend and resuming the device > before and after binding VM to a VA. > > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 92 > +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 92 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index > a0045da0b..f9d2ce421 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -550,9 +550,96 @@ static void test_mmap(device_t device, uint32_t > placement, uint32_t flags) > close(fw_handle); > } > > +/** > + * SUBTEST: vm-bind > + * Description: Validate vm bind functionality with suspend and resume > + * Functionality: pm > + * Run type: FULL > + */ > +static void vm_bind(device_t device, struct > +drm_xe_engine_class_instance *eci) { > + struct drm_xe_sync sync = { > + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, > + .flags = DRM_XE_SYNC_FLAG_SIGNAL, > + }; > + struct drm_xe_exec exec = { > + .num_batch_buffer = 1, > + .num_syncs = 1, > + .syncs = to_user_pointer(&sync), > + }; > + struct data { > + uint32_t batch[16]; > + uint32_t data; > + uint64_t addr; > + } *data; > + uint32_t vm; > + uint32_t exec_queue; > + uint32_t bind_engine; > + uint32_t syncobj; > + size_t bo_size; > + int value = 0x123456; > + uint64_t addr = 0x100000; > + uint32_t bo = 0; > + int b = 0; > + uint64_t batch_offset = (char *)&(data->batch) - (char *)data; > + uint64_t batch_addr = addr + batch_offset; > + uint64_t sdi_offset = (char *)&(data->data) - (char *)data; > + uint64_t sdi_addr = addr + sdi_offset; > + > + syncobj = syncobj_create(device.fd_xe, 0); > + sync.handle = syncobj; > + > + vm = xe_vm_create(device.fd_xe, 0, 0); > + bo_size = sizeof(*data); > + bo_size = xe_bb_size(device.fd_xe, bo_size); > + > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + > + exec_queue = xe_exec_queue_create(device.fd_xe, vm, eci, 0); > + bind_engine = xe_bind_exec_queue_create(device.fd_xe, vm, 0); > + xe_vm_bind_async(device.fd_xe, vm, bind_engine, bo, 0, addr, > bo_size, &sync, 1); > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > SUSPEND_TEST_NONE); > + data = xe_bo_map(device.fd_xe, bo, bo_size); > + > + b = 0; > + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; > + data->batch[b++] = sdi_addr; > + data->batch[b++] = sdi_addr >> 32; > + data->batch[b++] = value; > + data->batch[b++] = MI_BATCH_BUFFER_END; > + igt_assert(b <= ARRAY_SIZE(data->batch)); > + > + exec.exec_queue_id = exec_queue; > + exec.address = batch_addr; > + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; > + xe_exec(device.fd_xe, &exec); > + > + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, > NULL)); > + igt_assert_eq(data->data, value); > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > SUSPEND_TEST_NONE); > + > + exec.exec_queue_id = exec_queue; > + exec.address = batch_addr; > + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; Are the assignments gone after suspending? If not, reassignment would be a duplication. Can you please check it. In the commit you mentioned "by suspend and resuming the device > before and after binding VM to a VA". Are you doing that over here, are you binding before suspending and resume and then rebinding it again? Can you look into it. -- Priyanka > + xe_exec(device.fd_xe, &exec); > + > + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, > NULL)); > + igt_assert_eq(data->data, value); > + > + syncobj_destroy(device.fd_xe, syncobj); > + munmap(data, bo_size); > + gem_close(device.fd_xe, bo); > + > + xe_exec_queue_destroy(device.fd_xe, exec_queue); > + xe_vm_destroy(device.fd_xe, vm); > +} > + > igt_main > { > struct drm_xe_engine_class_instance *hwe; > + struct drm_xe_engine *engine; > device_t device; > uint32_t d3cold_allowed; > int sysfs_fd; > @@ -693,6 +780,11 @@ igt_main > } > } > > + igt_subtest("vm-bind") { > + engine = xe_engine(device.fd_xe, 1); > + vm_bind(device, &engine->instance); > + } > + > igt_fixture { > close(sysfs_fd); > igt_pm_set_d3cold_allowed(device.pci_slot_name, > d3cold_allowed); > -- > 2.39.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 7:55 ` Dandamudi, Priyanka @ 2024-02-23 9:28 ` Ch, Sai Gowtham 0 siblings, 0 replies; 8+ messages in thread From: Ch, Sai Gowtham @ 2024-02-23 9:28 UTC (permalink / raw) To: Dandamudi, Priyanka, igt-dev@lists.freedesktop.org >-----Original Message----- >From: Dandamudi, Priyanka <priyanka.dandamudi@intel.com> >Sent: Friday, February 23, 2024 1:26 PM >To: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; igt-dev@lists.freedesktop.org; >Ch, Sai Gowtham <sai.gowtham.ch@intel.com> >Subject: RE: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality >with suspend and resume. > > > >> -----Original Message----- >> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of >> sai.gowtham.ch@intel.com >> Sent: Friday, February 23, 2024 12:22 PM >> To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham >> <sai.gowtham.ch@intel.com> >> Subject: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind >> functionality with suspend and resume. >> >> From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >> >> Test validates vm bind functionality, by suspend and resuming the >> device before and after binding VM to a VA. >> >> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >> --- >> tests/intel/xe_pm.c | 92 >> +++++++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 92 insertions(+) >> >> diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index >> a0045da0b..f9d2ce421 100644 >> --- a/tests/intel/xe_pm.c >> +++ b/tests/intel/xe_pm.c >> @@ -550,9 +550,96 @@ static void test_mmap(device_t device, uint32_t >> placement, uint32_t flags) >> close(fw_handle); >> } >> >> +/** >> + * SUBTEST: vm-bind >> + * Description: Validate vm bind functionality with suspend and >> +resume >> + * Functionality: pm >> + * Run type: FULL >> + */ >> +static void vm_bind(device_t device, struct >> +drm_xe_engine_class_instance *eci) { >> + struct drm_xe_sync sync = { >> + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, >> + .flags = DRM_XE_SYNC_FLAG_SIGNAL, >> + }; >> + struct drm_xe_exec exec = { >> + .num_batch_buffer = 1, >> + .num_syncs = 1, >> + .syncs = to_user_pointer(&sync), >> + }; >> + struct data { >> + uint32_t batch[16]; >> + uint32_t data; >> + uint64_t addr; >> + } *data; >> + uint32_t vm; >> + uint32_t exec_queue; >> + uint32_t bind_engine; >> + uint32_t syncobj; >> + size_t bo_size; >> + int value = 0x123456; >> + uint64_t addr = 0x100000; >> + uint32_t bo = 0; >> + int b = 0; >> + uint64_t batch_offset = (char *)&(data->batch) - (char *)data; >> + uint64_t batch_addr = addr + batch_offset; >> + uint64_t sdi_offset = (char *)&(data->data) - (char *)data; >> + uint64_t sdi_addr = addr + sdi_offset; >> + >> + syncobj = syncobj_create(device.fd_xe, 0); >> + sync.handle = syncobj; >> + >> + vm = xe_vm_create(device.fd_xe, 0, 0); >> + bo_size = sizeof(*data); >> + bo_size = xe_bb_size(device.fd_xe, bo_size); >> + >> + bo = xe_bo_create(device.fd_xe, vm, bo_size, >> + vram_if_possible(device.fd_xe, eci->gt_id), >> + >> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); >> + >> + exec_queue = xe_exec_queue_create(device.fd_xe, vm, eci, 0); >> + bind_engine = xe_bind_exec_queue_create(device.fd_xe, vm, 0); >> + xe_vm_bind_async(device.fd_xe, vm, bind_engine, bo, 0, addr, >> bo_size, &sync, 1); >> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, >> SUSPEND_TEST_NONE); >> + data = xe_bo_map(device.fd_xe, bo, bo_size); >> + >> + b = 0; >> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; >> + data->batch[b++] = sdi_addr; >> + data->batch[b++] = sdi_addr >> 32; >> + data->batch[b++] = value; >> + data->batch[b++] = MI_BATCH_BUFFER_END; >> + igt_assert(b <= ARRAY_SIZE(data->batch)); >> + >> + exec.exec_queue_id = exec_queue; >> + exec.address = batch_addr; >> + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; >> + xe_exec(device.fd_xe, &exec); >> + >> + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, >> NULL)); >> + igt_assert_eq(data->data, value); >> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, >> SUSPEND_TEST_NONE); >> + >> + exec.exec_queue_id = exec_queue; >> + exec.address = batch_addr; >> + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; >Are the assignments gone after suspending? >If not, reassignment would be a duplication. Can you please check it. Will check that, thanks for bring this point. >In the commit you mentioned "by suspend and resuming the device >> before and after binding VM to a VA". >Are you doing that over here, are you binding before suspending and resume and >then rebinding it again? Can you look into it. Idle plan is to bind once and do multiple suspend and resume and check if the vm bind is still intact, I'll correct the commit message. ----- Gowtham >-- Priyanka > >> + xe_exec(device.fd_xe, &exec); >> + >> + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, >> NULL)); >> + igt_assert_eq(data->data, value); >> + >> + syncobj_destroy(device.fd_xe, syncobj); >> + munmap(data, bo_size); >> + gem_close(device.fd_xe, bo); >> + >> + xe_exec_queue_destroy(device.fd_xe, exec_queue); >> + xe_vm_destroy(device.fd_xe, vm); >> +} >> + >> igt_main >> { >> struct drm_xe_engine_class_instance *hwe; >> + struct drm_xe_engine *engine; >> device_t device; >> uint32_t d3cold_allowed; >> int sysfs_fd; >> @@ -693,6 +780,11 @@ igt_main >> } >> } >> >> + igt_subtest("vm-bind") { >> + engine = xe_engine(device.fd_xe, 1); >> + vm_bind(device, &engine->instance); >> + } >> + >> igt_fixture { >> close(sysfs_fd); >> igt_pm_set_d3cold_allowed(device.pci_slot_name, >> d3cold_allowed); >> -- >> 2.39.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 6:51 [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume sai.gowtham.ch 2024-02-23 7:55 ` Dandamudi, Priyanka @ 2024-02-23 8:44 ` Patchwork 2024-02-23 9:02 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-23 8:44 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1011 bytes --] == Series Details == Series: tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. URL : https://patchwork.freedesktop.org/series/130297/ State : success == Summary == CI Bug Log - changes from XEIGT_7727_BAT -> XEIGTPW_10728_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7727 -> IGTPW_10728 * Linux: xe-831-5e139b8dd8049fee9f42fe76c603b5cfc286af7f -> xe-834-75d52277384365cb47a3c736a2a16fd5d4083b0e IGTPW_10728: 10728 IGT_7727: 7727 xe-831-5e139b8dd8049fee9f42fe76c603b5cfc286af7f: 5e139b8dd8049fee9f42fe76c603b5cfc286af7f xe-834-75d52277384365cb47a3c736a2a16fd5d4083b0e: 75d52277384365cb47a3c736a2a16fd5d4083b0e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10728/index.html [-- Attachment #2: Type: text/html, Size: 1570 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 6:51 [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume sai.gowtham.ch 2024-02-23 7:55 ` Dandamudi, Priyanka 2024-02-23 8:44 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-02-23 9:02 ` Patchwork 2024-02-23 20:43 ` [PATCH i-g-t] " Rodrigo Vivi 2024-02-23 23:29 ` ✓ Fi.CI.IGT: success for " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-23 9:02 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7163 bytes --] == Series Details == Series: tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. URL : https://patchwork.freedesktop.org/series/130297/ State : success == Summary == CI Bug Log - changes from CI_DRM_14324 -> IGTPW_10728 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/index.html Participating hosts (35 -> 35) ------------------------------ Additional (1): bat-adlm-1 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10728 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlm-1: NOTRUN -> [SKIP][1] ([i915#3826]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-adlm-1: NOTRUN -> [SKIP][2] ([i915#2582]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@fbdev@eof.html * igt@fbdev@info: - bat-adlm-1: NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@fbdev@info.html * igt@gem_exec_parallel@engines@contexts: - bat-adlp-6: [PASS][4] -> [INCOMPLETE][5] ([i915#10137]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/bat-adlp-6/igt@gem_exec_parallel@engines@contexts.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlp-6/igt@gem_exec_parallel@engines@contexts.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlm-1: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@gem_tiled_pread_basic: - bat-adlm-1: NOTRUN -> [SKIP][9] ([i915#3282]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlm-1: NOTRUN -> [SKIP][10] ([i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: NOTRUN -> [SKIP][11] ([i915#9875] / [i915#9900]) +16 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-plain-flip: - bat-adlm-1: NOTRUN -> [SKIP][12] ([i915#3637]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@kms_flip@basic-plain-flip.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: NOTRUN -> [SKIP][13] ([fdo#109285]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][14] ([i915#1849] / [i915#4342]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - fi-cfl-8109u: NOTRUN -> [SKIP][15] ([fdo#109271]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html - bat-adlm-1: NOTRUN -> [SKIP][16] ([i915#5354]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlm-1: NOTRUN -> [SKIP][17] ([i915#3555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][18] ([i915#3708] / [i915#9900]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][19] ([i915#3708]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - {bat-adls-6}: [DMESG-WARN][20] ([i915#5591]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/bat-adls-6/igt@i915_selftest@live@hangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/bat-adls-6/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9875]: https://gitlab.freedesktop.org/drm/intel/issues/9875 [i915#9900]: https://gitlab.freedesktop.org/drm/intel/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7727 -> IGTPW_10728 CI-20190529: 20190529 CI_DRM_14324: 75d52277384365cb47a3c736a2a16fd5d4083b0e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10728: 10728 IGT_7727: 7727 Testlist changes ---------------- +igt@xe_pm@vm-bind -igt@xe_exec_compute_mode@lr-stress == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/index.html [-- Attachment #2: Type: text/html, Size: 8548 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 6:51 [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume sai.gowtham.ch ` (2 preceding siblings ...) 2024-02-23 9:02 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-23 20:43 ` Rodrigo Vivi 2024-02-26 6:50 ` Ch, Sai Gowtham 2024-02-23 23:29 ` ✓ Fi.CI.IGT: success for " Patchwork 4 siblings, 1 reply; 8+ messages in thread From: Rodrigo Vivi @ 2024-02-23 20:43 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Fri, Feb 23, 2024 at 12:21:36PM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test validates vm bind functionality, by suspend and resuming the device > before and after binding VM to a VA. > > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 92 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 92 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index a0045da0b..f9d2ce421 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -550,9 +550,96 @@ static void test_mmap(device_t device, uint32_t placement, uint32_t flags) > close(fw_handle); > } > > +/** > + * SUBTEST: vm-bind > + * Description: Validate vm bind functionality with suspend and resume > + * Functionality: pm > + * Run type: FULL > + */ > +static void vm_bind(device_t device, struct drm_xe_engine_class_instance *eci) > +{ > + struct drm_xe_sync sync = { > + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, > + .flags = DRM_XE_SYNC_FLAG_SIGNAL, > + }; > + struct drm_xe_exec exec = { > + .num_batch_buffer = 1, > + .num_syncs = 1, > + .syncs = to_user_pointer(&sync), > + }; > + struct data { > + uint32_t batch[16]; > + uint32_t data; > + uint64_t addr; > + } *data; > + uint32_t vm; > + uint32_t exec_queue; > + uint32_t bind_engine; > + uint32_t syncobj; > + size_t bo_size; > + int value = 0x123456; > + uint64_t addr = 0x100000; > + uint32_t bo = 0; > + int b = 0; > + uint64_t batch_offset = (char *)&(data->batch) - (char *)data; > + uint64_t batch_addr = addr + batch_offset; > + uint64_t sdi_offset = (char *)&(data->data) - (char *)data; > + uint64_t sdi_addr = addr + sdi_offset; > + > + syncobj = syncobj_create(device.fd_xe, 0); > + sync.handle = syncobj; > + > + vm = xe_vm_create(device.fd_xe, 0, 0); > + bo_size = sizeof(*data); > + bo_size = xe_bb_size(device.fd_xe, bo_size); > + > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + > + exec_queue = xe_exec_queue_create(device.fd_xe, vm, eci, 0); > + bind_engine = xe_bind_exec_queue_create(device.fd_xe, vm, 0); > + xe_vm_bind_async(device.fd_xe, vm, bind_engine, bo, 0, addr, bo_size, &sync, 1); > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); this is the only thing new here, a S3 right after the async vm_bind. for this we can only introduce a new option to test_exec and add this line there, withouth having to recreate the function. But I also don't believe that the goal is only to test this, but a combination of VM_BIND operations and how they survive to the suspend states. So, we do need a new function, but to test a combination of the vm_bind operations against the combination of the suspend states: * - %DRM_XE_VM_BIND_OP_MAP * - %DRM_XE_VM_BIND_OP_UNMAP * - %DRM_XE_VM_BIND_OP_MAP_USERPTR * - %DRM_XE_VM_BIND_OP_UNMAP_ALL * - %DRM_XE_VM_BIND_OP_PREFETCH vs the already defined s_states and d_states > + data = xe_bo_map(device.fd_xe, bo, bo_size); > + > + b = 0; > + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; > + data->batch[b++] = sdi_addr; > + data->batch[b++] = sdi_addr >> 32; > + data->batch[b++] = value; > + data->batch[b++] = MI_BATCH_BUFFER_END; > + igt_assert(b <= ARRAY_SIZE(data->batch)); > + > + exec.exec_queue_id = exec_queue; > + exec.address = batch_addr; > + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; > + xe_exec(device.fd_xe, &exec); > + > + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, NULL)); > + igt_assert_eq(data->data, value); > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + > + exec.exec_queue_id = exec_queue; > + exec.address = batch_addr; > + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; > + xe_exec(device.fd_xe, &exec); > + > + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, NULL)); > + igt_assert_eq(data->data, value); > + > + syncobj_destroy(device.fd_xe, syncobj); > + munmap(data, bo_size); > + gem_close(device.fd_xe, bo); > + > + xe_exec_queue_destroy(device.fd_xe, exec_queue); > + xe_vm_destroy(device.fd_xe, vm); > +} > + > igt_main > { > struct drm_xe_engine_class_instance *hwe; > + struct drm_xe_engine *engine; > device_t device; > uint32_t d3cold_allowed; > int sysfs_fd; > @@ -693,6 +780,11 @@ igt_main > } > } > > + igt_subtest("vm-bind") { > + engine = xe_engine(device.fd_xe, 1); > + vm_bind(device, &engine->instance); > + } > + > igt_fixture { > close(sysfs_fd); > igt_pm_set_d3cold_allowed(device.pci_slot_name, d3cold_allowed); > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 20:43 ` [PATCH i-g-t] " Rodrigo Vivi @ 2024-02-26 6:50 ` Ch, Sai Gowtham 0 siblings, 0 replies; 8+ messages in thread From: Ch, Sai Gowtham @ 2024-02-26 6:50 UTC (permalink / raw) To: Vivi, Rodrigo; +Cc: igt-dev@lists.freedesktop.org >-----Original Message----- >From: Vivi, Rodrigo <rodrigo.vivi@intel.com> >Sent: Saturday, February 24, 2024 2:14 AM >To: Ch, Sai Gowtham <sai.gowtham.ch@intel.com> >Cc: igt-dev@lists.freedesktop.org >Subject: Re: [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality >with suspend and resume. > >On Fri, Feb 23, 2024 at 12:21:36PM +0530, sai.gowtham.ch@intel.com wrote: >> From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >> >> Test validates vm bind functionality, by suspend and resuming the >> device before and after binding VM to a VA. >> >> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >> --- >> tests/intel/xe_pm.c | 92 >> +++++++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 92 insertions(+) >> >> diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index >> a0045da0b..f9d2ce421 100644 >> --- a/tests/intel/xe_pm.c >> +++ b/tests/intel/xe_pm.c >> @@ -550,9 +550,96 @@ static void test_mmap(device_t device, uint32_t >placement, uint32_t flags) >> close(fw_handle); >> } >> >> +/** >> + * SUBTEST: vm-bind >> + * Description: Validate vm bind functionality with suspend and >> +resume >> + * Functionality: pm >> + * Run type: FULL >> + */ >> +static void vm_bind(device_t device, struct >> +drm_xe_engine_class_instance *eci) { >> + struct drm_xe_sync sync = { >> + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, >> + .flags = DRM_XE_SYNC_FLAG_SIGNAL, >> + }; >> + struct drm_xe_exec exec = { >> + .num_batch_buffer = 1, >> + .num_syncs = 1, >> + .syncs = to_user_pointer(&sync), >> + }; >> + struct data { >> + uint32_t batch[16]; >> + uint32_t data; >> + uint64_t addr; >> + } *data; >> + uint32_t vm; >> + uint32_t exec_queue; >> + uint32_t bind_engine; >> + uint32_t syncobj; >> + size_t bo_size; >> + int value = 0x123456; >> + uint64_t addr = 0x100000; >> + uint32_t bo = 0; >> + int b = 0; >> + uint64_t batch_offset = (char *)&(data->batch) - (char *)data; >> + uint64_t batch_addr = addr + batch_offset; >> + uint64_t sdi_offset = (char *)&(data->data) - (char *)data; >> + uint64_t sdi_addr = addr + sdi_offset; >> + >> + syncobj = syncobj_create(device.fd_xe, 0); >> + sync.handle = syncobj; >> + >> + vm = xe_vm_create(device.fd_xe, 0, 0); >> + bo_size = sizeof(*data); >> + bo_size = xe_bb_size(device.fd_xe, bo_size); >> + >> + bo = xe_bo_create(device.fd_xe, vm, bo_size, >> + vram_if_possible(device.fd_xe, eci->gt_id), >> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); >> + >> + exec_queue = xe_exec_queue_create(device.fd_xe, vm, eci, 0); >> + bind_engine = xe_bind_exec_queue_create(device.fd_xe, vm, 0); >> + xe_vm_bind_async(device.fd_xe, vm, bind_engine, bo, 0, addr, bo_size, >&sync, 1); >> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, >SUSPEND_TEST_NONE); > >this is the only thing new here, a S3 right after the async vm_bind. >for this we can only introduce a new option to test_exec and add this line there, >withouth having to recreate the function. > >But I also don't believe that the goal is only to test this, but a combination of >VM_BIND operations and how they survive to the suspend states. > >So, we do need a new function, but to test a combination of the vm_bind >operations against the combination of the suspend states: > >* - %DRM_XE_VM_BIND_OP_MAP > * - %DRM_XE_VM_BIND_OP_UNMAP > * - %DRM_XE_VM_BIND_OP_MAP_USERPTR > * - %DRM_XE_VM_BIND_OP_UNMAP_ALL > * - %DRM_XE_VM_BIND_OP_PREFETCH > >vs the already defined s_states and d_states Thanks for your comments. Makes sense to me, Will do a restructure of the code and add different vm_bind combinations which was missing in this patch and send a new patch series for review. ----- Gowtham > >> + data = xe_bo_map(device.fd_xe, bo, bo_size); >> + >> + b = 0; >> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; >> + data->batch[b++] = sdi_addr; >> + data->batch[b++] = sdi_addr >> 32; >> + data->batch[b++] = value; >> + data->batch[b++] = MI_BATCH_BUFFER_END; >> + igt_assert(b <= ARRAY_SIZE(data->batch)); >> + >> + exec.exec_queue_id = exec_queue; >> + exec.address = batch_addr; >> + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; >> + xe_exec(device.fd_xe, &exec); >> + >> + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, NULL)); >> + igt_assert_eq(data->data, value); >> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, >SUSPEND_TEST_NONE); >> + >> + exec.exec_queue_id = exec_queue; >> + exec.address = batch_addr; >> + sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; >> + xe_exec(device.fd_xe, &exec); >> + >> + igt_assert(syncobj_wait(device.fd_xe, &syncobj, 1, INT64_MAX, 0, NULL)); >> + igt_assert_eq(data->data, value); >> + >> + syncobj_destroy(device.fd_xe, syncobj); >> + munmap(data, bo_size); >> + gem_close(device.fd_xe, bo); >> + >> + xe_exec_queue_destroy(device.fd_xe, exec_queue); >> + xe_vm_destroy(device.fd_xe, vm); >> +} >> + >> igt_main >> { >> struct drm_xe_engine_class_instance *hwe; >> + struct drm_xe_engine *engine; >> device_t device; >> uint32_t d3cold_allowed; >> int sysfs_fd; >> @@ -693,6 +780,11 @@ igt_main >> } >> } >> >> + igt_subtest("vm-bind") { >> + engine = xe_engine(device.fd_xe, 1); >> + vm_bind(device, &engine->instance); >> + } >> + >> igt_fixture { >> close(sysfs_fd); >> igt_pm_set_d3cold_allowed(device.pci_slot_name, >d3cold_allowed); >> -- >> 2.39.1 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.IGT: success for tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. 2024-02-23 6:51 [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume sai.gowtham.ch ` (3 preceding siblings ...) 2024-02-23 20:43 ` [PATCH i-g-t] " Rodrigo Vivi @ 2024-02-23 23:29 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-23 23:29 UTC (permalink / raw) To: Ch, Sai Gowtham; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86983 bytes --] == Series Details == Series: tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume. URL : https://patchwork.freedesktop.org/series/130297/ State : success == Summary == CI Bug Log - changes from CI_DRM_14324_full -> IGTPW_10728_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_10728_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][3] ([i915#10288]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@api_intel_bb@render-ccs.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-3/igt@drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-17/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3281]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-3/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][15] ([fdo#109314]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#5882]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4812]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][24] ([i915#9606]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2846]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][28] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-8/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842]) +3 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-7/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][36] ([i915#2842]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-15/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][40] ([fdo#112283]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@gem_exec_params@secure-non-root.html - shard-rkl: NOTRUN -> [SKIP][41] ([fdo#112283]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@gem_exec_params@secure-non-root.html - shard-dg1: NOTRUN -> [SKIP][42] ([fdo#112283]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@gem_exec_params@secure-non-root.html - shard-mtlp: NOTRUN -> [SKIP][43] ([fdo#112283]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-8/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +13 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.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_10728/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#4613]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-9/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random-engines: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-16/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@display: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-3/igt@gem_pread@display.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-15/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-tglu: NOTRUN -> [SKIP][73] ([fdo#109312]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-3/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-16/igt@gem_userptr_blits@coherency-unsync.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-3/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][81] ([fdo#109271]) +57 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb5/igt@gem_vm_create@invalid-create.html * igt@gen7_exec_parse@chained-batch: - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#109289]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-8/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-8/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6227]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][88] -> [INCOMPLETE][89] ([i915#10137]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][90] ([i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109293] / [fdo#109506]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#6621]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][96] ([i915#8346]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#8925]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4387]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#4387]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@intel_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#7707]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4215] / [i915#5190]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#8709]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111614]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5286]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#5286]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111614]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#111614]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#111614] / [i915#3638]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [FAIL][115] ([i915#3743]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][116] -> [FAIL][117] ([i915#3743]) +2 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +10 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111615]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([fdo#110723]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#111615]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#111615]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_joiner@2x-modeset: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#2705]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-16/igt@kms_big_joiner@2x-modeset.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111827]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-1/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111827]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111827]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@kms_chamelium_color@degamma.html - shard-dg1: NOTRUN -> [SKIP][128] ([fdo#111827]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7118] / [i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#9424]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-17/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3116]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3299]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9424]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#9424]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7118]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][142] ([fdo#109279] / [i915#3359]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#8814]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8814]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3359]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3555]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#4213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#4103]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#9809]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][153] ([fdo#111825]) +8 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-tglu: NOTRUN -> [SKIP][154] ([fdo#109274]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#5354]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][157] ([fdo#110189] / [i915#9723]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#110189] / [i915#9723]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#8588]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3804]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3840]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#3840]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9053]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#1839]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#1839]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-17/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][168] ([i915#1839]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9337]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#9337]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#658]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-3/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][172] ([fdo#109274]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8381]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3637]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#109274] / [i915#3637]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-4/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#2672]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/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-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#2672]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@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][178] ([i915#2672]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#2587] / [i915#2672]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][181] ([fdo#109285]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5274]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][183] ([i915#6880]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][184] ([fdo#111767] / [fdo#111825] / [i915#1825]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#8708]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#1825]) +12 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#5354]) +39 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][188] -> [SKIP][189] ([fdo#109271]) +7 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [PASS][190] -> [FAIL][191] ([i915#6880]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3458]) +18 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3023]) +22 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][194] ([fdo#110189]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#109280] / [fdo#111767]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][196] ([fdo#111825]) +14 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][197] ([fdo#111825] / [i915#1825]) +32 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9766]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#10070]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8708]) +21 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][201] ([fdo#109280]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3458]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8708]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-4/igt@kms_hdr@static-swap.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#6301]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][209] ([fdo#109289]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][210] ([fdo#109289]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][211] ([fdo#109289]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8821]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3555]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#6953] / [i915#9423]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][215] ([i915#8292]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9423]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9423]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#9423]) +15 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#5176] / [i915#9423]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#5235]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#5235]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5235]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#5235] / [i915#9423]) +19 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5235]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#5235]) +11 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#9685]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3361]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9340]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#8430]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][230] -> [SKIP][231] ([i915#9519]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#9519]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][233] -> [SKIP][234] ([i915#9519]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][235] ([fdo#110189]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#9808]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][237] ([fdo#110189]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][238] ([fdo#109271] / [fdo#110189]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][239] ([fdo#110189]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-19/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9683]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#9683]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4348]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][243] ([fdo#111068] / [i915#9683]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#9688]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-7/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#9732]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-3/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9732]) +19 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9732]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-15/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9732]) +28 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4077] / [i915#9688]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-5/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][250] ([fdo#109271]) +150 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#9685]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#4884]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#4235]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-5/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#4235] / [i915#5190]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][255] ([fdo#111615] / [i915#5289]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][256] ([fdo#111615] / [i915#5289]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#4235]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][258] ([IGT#2]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][259] ([fdo#109309]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][260] ([i915#9196]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8808]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#9906]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#2437]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2437] / [i915#9412]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][265] ([fdo#109271] / [i915#2437]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][266] ([fdo#109289] / [i915#7387]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8516]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#8516]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8516]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-15/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][270] ([fdo#109295] / [i915#3291] / [i915#3708]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#3708] / [i915#4077]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#9917]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#4818]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][274] ([fdo#109315]) +11 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-tglu: NOTRUN -> [SKIP][276] ([fdo#109315] / [i915#2575]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-4/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#2575]) +16 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-10/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2575]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_create_bo@create-bo-zeroed: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#7711]) +7 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@vc4/vc4_create_bo@create-bo-zeroed.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#2575]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-2/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#7711]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-2/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#7711]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#7711]) +6 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][284] ([i915#6268]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][286] ([i915#2842]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [INCOMPLETE][288] ([i915#10137] / [i915#5566]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-glk2/igt@gen9_exec_parse@allowed-all.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk4/igt@gen9_exec_parse@allowed-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][290] ([i915#10137] / [i915#9849]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [INCOMPLETE][292] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@gem-pread: - shard-dg2: [SKIP][294] -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg2-6/igt@i915_pm_rpm@gem-pread.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-1/igt@i915_pm_rpm@gem-pread.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][296] ([i915#5138]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][298] -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-glk1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-glk1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-snb: [SKIP][300] ([fdo#109271]) -> [PASS][301] +4 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][302] ([i915#9519]) -> [PASS][303] +1 other test pass [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][304] ([i915#5465]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][306] ([i915#9196]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][308] ([i915#9196]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][310] ([i915#10137] / [i915#9408] / [i915#9618]) -> [ABORT][311] ([i915#9618]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][312] ([i915#2876]) -> [FAIL][313] ([i915#2842]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][314] ([i915#9820]) -> [ABORT][315] ([i915#9697]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][316] ([fdo#110189] / [i915#3955]) -> [SKIP][317] ([i915#3955]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [TIMEOUT][318] -> [SKIP][319] ([i915#8708]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-snb: [SKIP][320] ([fdo#109271]) -> [SKIP][321] ([fdo#109271] / [fdo#111767]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-snb: [SKIP][322] ([fdo#109271] / [fdo#111767]) -> [SKIP][323] ([fdo#109271]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14324/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#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#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [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#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#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10288]: https://gitlab.freedesktop.org/drm/intel/issues/10288 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7727 -> IGTPW_10728 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14324: 75d52277384365cb47a3c736a2a16fd5d4083b0e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10728: 10728 IGT_7727: 7727 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10728/index.html [-- Attachment #2: Type: text/html, Size: 107066 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-02-26 6:50 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-23 6:51 [PATCH i-g-t] tests/intel/xe_pm: Test to validate vm bind functionality with suspend and resume sai.gowtham.ch 2024-02-23 7:55 ` Dandamudi, Priyanka 2024-02-23 9:28 ` Ch, Sai Gowtham 2024-02-23 8:44 ` ✓ CI.xeBAT: success for " Patchwork 2024-02-23 9:02 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-23 20:43 ` [PATCH i-g-t] " Rodrigo Vivi 2024-02-26 6:50 ` Ch, Sai Gowtham 2024-02-23 23:29 ` ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox