* [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test
@ 2023-12-08 7:17 sai.gowtham.ch
0 siblings, 0 replies; 12+ messages in thread
From: sai.gowtham.ch @ 2023-12-08 7:17 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Implement xe_for_each_engine in basic-all test, it queries
all the supported classes and instances for a gt and submits
workload to it. which fixes the num_placements issue.
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
---
tests/intel/xe_exec_store.c | 126 +++++++-----------------------------
1 file changed, 25 insertions(+), 101 deletions(-)
diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
index dec8546a3..88ee69a63 100644
--- a/tests/intel/xe_exec_store.c
+++ b/tests/intel/xe_exec_store.c
@@ -51,8 +51,13 @@ static void store_dword_batch(struct data *data, uint64_t addr, int value)
/**
* SUBTEST: basic-store
* Description: Basic test to verify store dword.
+ * Test category: functionality test
+ *
+ * SUBTEST: basic-all
+ * Description: Test to verify store dword on all available engines.
+ * Test category: functionality test
*/
-static void store(int fd)
+static void store(int fd, struct drm_xe_engine_class_instance *eci)
{
struct drm_xe_sync sync = {
.type = DRM_XE_SYNC_TYPE_SYNCOBJ,
@@ -64,9 +69,9 @@ static void store(int fd)
.syncs = to_user_pointer(&sync),
};
struct data *data;
- struct drm_xe_engine *engine;
uint32_t vm;
uint32_t exec_queue;
+ uint32_t bind_engine;
uint32_t syncobj;
size_t bo_size;
int value = 0x123456;
@@ -81,16 +86,17 @@ static void store(int fd)
bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
xe_get_default_alignment(fd));
- engine = xe_engine(fd, 1);
bo = xe_bo_create(fd, vm, bo_size,
- vram_if_possible(fd, engine->instance.gt_id),
+ vram_if_possible(fd, eci->gt_id),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
- xe_vm_bind_async(fd, vm, engine->instance.gt_id, bo, 0, addr, bo_size, &sync, 1);
+ exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
+ bind_engine = xe_bind_exec_queue_create(fd, vm, 0, true);
+ xe_vm_bind_async(fd, vm, bind_engine, bo, 0, addr, bo_size, &sync, 1);
data = xe_bo_map(fd, bo, bo_size);
store_dword_batch(data, addr, value);
- exec_queue = xe_exec_queue_create(fd, vm, &engine->instance, 0);
+ exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
exec.exec_queue_id = exec_queue;
exec.address = data->addr;
sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
@@ -206,112 +212,30 @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance *eci,
xe_vm_destroy(fd, vm);
}
-/**
- * SUBTEST: basic-all
- * Description: Test to verify store dword on all available engines.
- */
-static void store_all(int fd, int gt, int class)
-{
- struct drm_xe_sync sync[2] = {
- { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
- { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }
- };
- struct drm_xe_exec exec = {
- .num_batch_buffer = 1,
- .num_syncs = 2,
- .syncs = to_user_pointer(&sync),
- };
-
- struct data *data;
- uint32_t syncobjs[MAX_INSTANCE];
- uint32_t exec_queues[MAX_INSTANCE];
- uint32_t vm;
- size_t bo_size;
- uint64_t addr = 0x100000;
- uint32_t bo = 0;
- struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
- struct drm_xe_engine_class_instance *hwe;
- int i, num_placements = 0;
-
- vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0);
- bo_size = sizeof(*data);
- bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
- xe_get_default_alignment(fd));
-
- bo = xe_bo_create(fd, vm, bo_size,
- vram_if_possible(fd, 0),
- DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
- data = xe_bo_map(fd, bo, bo_size);
-
- xe_for_each_engine(fd, hwe) {
- if (hwe->engine_class != class || hwe->gt_id != gt)
- continue;
- eci[num_placements++] = *hwe;
- }
-
- igt_require(num_placements);
-
- for (i = 0; i < num_placements; i++) {
- struct drm_xe_exec_queue_create create = {
- .vm_id = vm,
- .width = 1,
- .num_placements = num_placements,
- .instances = to_user_pointer(eci),
- };
-
- igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE,
- &create), 0);
- exec_queues[i] = create.exec_queue_id;
- syncobjs[i] = syncobj_create(fd, 0);
- };
-
- sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
-
- for (i = 0; i < num_placements; i++) {
-
- store_dword_batch(data, addr, i);
- sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
- sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
- sync[1].handle = syncobjs[i];
-
- exec.exec_queue_id = exec_queues[i];
- exec.address = data->addr;
- xe_exec(fd, &exec);
-
- igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, NULL));
- igt_assert_eq(data->data, i);
- }
-
- xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
- syncobj_destroy(fd, sync[0].handle);
- munmap(data, bo_size);
- gem_close(fd, bo);
-
- for (i = 0; i < num_placements; i++) {
- syncobj_destroy(fd, syncobjs[i]);
- xe_exec_queue_destroy(fd, exec_queues[i]);
- }
- xe_vm_destroy(fd, vm);
-}
-
igt_main
{
struct drm_xe_engine_class_instance *hwe;
- int fd, class, gt;
+ struct drm_xe_engine *engine;
+ int fd, i = 0;
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
xe_device_get(fd);
}
- igt_subtest("basic-store")
- store(fd);
+ igt_subtest("basic-store") {
+ engine = xe_engine(fd, 1);
+ store(fd, &engine->instance);
+ }
igt_subtest("basic-all") {
- xe_for_each_gt(fd, gt)
- xe_for_each_engine_class(class)
- store_all(fd, gt, class);
+ xe_for_each_engine(fd, hwe) {
+ igt_info("engine %d: %s, engine instance: %d, tile: TILE-%d\n", i++,
+ xe_engine_class_string(hwe->engine_class),
+ hwe->engine_instance,
+ hwe->gt_id);
+ store(fd, hwe);
+ }
}
igt_subtest("cachelines")
--
2.39.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test.
@ 2023-12-11 13:07 sai.gowtham.ch
2023-12-11 20:04 ` ✓ Fi.CI.BAT: success for " Patchwork
` (7 more replies)
0 siblings, 8 replies; 12+ messages in thread
From: sai.gowtham.ch @ 2023-12-11 13:07 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
implement xe_for_each_engine in basic-all test so that,
it queries all the supported classes and instances for a gt
and submits workload to it. which fixes the num_placements issue.
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
---
tests/intel/xe_exec_store.c | 131 ++++++++----------------------------
1 file changed, 27 insertions(+), 104 deletions(-)
diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
index 6d5a1bbac..7a66d744c 100644
--- a/tests/intel/xe_exec_store.c
+++ b/tests/intel/xe_exec_store.c
@@ -79,8 +79,10 @@ static void cond_batch(struct data *data, uint64_t addr, int value)
* Description: Basic test to verify store dword.
* SUBTEST: basic-cond-batch
* Description: Basic test to verify cond batch end instruction.
+ * SUBTEST: basic-all
+ * Description: Test to verify store dword on all available engines.
*/
-static void basic_inst(int fd, int inst_type)
+static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instance *eci)
{
struct drm_xe_sync sync = {
.type = DRM_XE_SYNC_TYPE_SYNCOBJ,
@@ -92,9 +94,9 @@ static void basic_inst(int fd, int inst_type)
.syncs = to_user_pointer(&sync),
};
struct data *data;
- struct drm_xe_engine *engine;
uint32_t vm;
uint32_t exec_queue;
+ uint32_t bind_engine;
uint32_t syncobj;
size_t bo_size;
int value = 0x123456;
@@ -109,12 +111,13 @@ static void basic_inst(int fd, int inst_type)
bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
xe_get_default_alignment(fd));
- engine = xe_engine(fd, 1);
bo = xe_bo_create(fd, vm, bo_size,
- vram_if_possible(fd, engine->instance.gt_id),
+ vram_if_possible(fd, eci->gt_id),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
- xe_vm_bind_async(fd, vm, engine->instance.gt_id, bo, 0, addr, bo_size, &sync, 1);
+ exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
+ bind_engine = xe_bind_exec_queue_create(fd, vm, 0, true);
+ xe_vm_bind_async(fd, vm, bind_engine, bo, 0, addr, bo_size, &sync, 1);
data = xe_bo_map(fd, bo, bo_size);
if (inst_type == STORE)
@@ -127,7 +130,7 @@ static void basic_inst(int fd, int inst_type)
else
igt_assert_f(inst_type < 2, "Entered wrong inst_type.\n");
- exec_queue = xe_exec_queue_create(fd, vm, &engine->instance, 0);
+ exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
exec.exec_queue_id = exec_queue;
exec.address = data->addr;
sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
@@ -243,115 +246,35 @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance *eci,
xe_vm_destroy(fd, vm);
}
-/**
- * SUBTEST: basic-all
- * Description: Test to verify store dword on all available engines.
- */
-static void store_all(int fd, int gt, int class)
-{
- struct drm_xe_sync sync[2] = {
- { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
- { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }
- };
- struct drm_xe_exec exec = {
- .num_batch_buffer = 1,
- .num_syncs = 2,
- .syncs = to_user_pointer(&sync),
- };
-
- struct data *data;
- uint32_t syncobjs[MAX_INSTANCE];
- uint32_t exec_queues[MAX_INSTANCE];
- uint32_t vm;
- size_t bo_size;
- uint64_t addr = 0x100000;
- uint32_t bo = 0;
- struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
- struct drm_xe_engine_class_instance *hwe;
- int i, num_placements = 0;
-
- vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0);
- bo_size = sizeof(*data);
- bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
- xe_get_default_alignment(fd));
-
- bo = xe_bo_create(fd, vm, bo_size,
- vram_if_possible(fd, 0),
- DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
- data = xe_bo_map(fd, bo, bo_size);
-
- xe_for_each_engine(fd, hwe) {
- if (hwe->engine_class != class || hwe->gt_id != gt)
- continue;
- eci[num_placements++] = *hwe;
- }
-
- igt_require(num_placements);
-
- for (i = 0; i < num_placements; i++) {
- struct drm_xe_exec_queue_create create = {
- .vm_id = vm,
- .width = 1,
- .num_placements = num_placements,
- .instances = to_user_pointer(eci),
- };
-
- igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE,
- &create), 0);
- exec_queues[i] = create.exec_queue_id;
- syncobjs[i] = syncobj_create(fd, 0);
- };
-
- sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
-
- for (i = 0; i < num_placements; i++) {
-
- store_dword_batch(data, addr, i);
- sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
- sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
- sync[1].handle = syncobjs[i];
-
- exec.exec_queue_id = exec_queues[i];
- exec.address = data->addr;
- xe_exec(fd, &exec);
-
- igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, NULL));
- igt_assert_eq(data->data, i);
- }
-
- xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
- syncobj_destroy(fd, sync[0].handle);
- munmap(data, bo_size);
- gem_close(fd, bo);
-
- for (i = 0; i < num_placements; i++) {
- syncobj_destroy(fd, syncobjs[i]);
- xe_exec_queue_destroy(fd, exec_queues[i]);
- }
- xe_vm_destroy(fd, vm);
-}
-
igt_main
{
struct drm_xe_engine_class_instance *hwe;
- int fd, class, gt;
+ int fd;
+ struct drm_xe_engine *engine;
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
xe_device_get(fd);
}
- igt_subtest("basic-store")
- basic_inst(fd, STORE);
+ igt_subtest("basic-store") {
+ engine = xe_engine(fd, 1);
+ basic_inst(fd, STORE, &engine->instance);
+ }
- igt_subtest("basic-cond-batch")
- basic_inst(fd, COND_BATCH);
+ igt_subtest("basic-cond-batch") {
+ engine = xe_engine(fd, 1);
+ basic_inst(fd, COND_BATCH, &engine->instance);
+ }
- igt_subtest("basic-all") {
- xe_for_each_gt(fd, gt)
- xe_for_each_engine_class(class)
- store_all(fd, gt, class);
+ igt_subtest_with_dynamic("basic-all") {
+ xe_for_each_engine(fd, hwe) {
+ igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d",
+ xe_engine_class_string(hwe->engine_class),
+ hwe->engine_instance,
+ hwe->gt_id);
+ basic_inst(fd, STORE, hwe);
+ }
}
igt_subtest("cachelines")
--
2.39.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
@ 2023-12-11 20:04 ` Patchwork
2023-12-11 20:55 ` ✗ Fi.CI.IGT: failure " Patchwork
` (6 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-12-11 20:04 UTC (permalink / raw)
To: sai.gowtham.ch; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10628 bytes --]
== Series Details ==
Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
URL : https://patchwork.freedesktop.org/series/127630/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14007 -> IGTPW_10392
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
Participating hosts (32 -> 34)
------------------------------
Additional (3): bat-dg2-8 bat-dg2-9 fi-pnv-d510
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10392 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@lmem0:
- bat-dg2-9: NOTRUN -> [INCOMPLETE][1] ([i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- bat-dg2-8: NOTRUN -> [INCOMPLETE][2] ([i915#9275])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_lmem_swapping@basic:
- fi-pnv-d510: NOTRUN -> [SKIP][3] ([fdo#109271]) +28 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/fi-pnv-d510/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@gem_mmap_gtt@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#6621])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#6645])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#5190])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#4215] / [i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#4215] / [i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#4212]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#4212]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4212] / [i915#5608])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#4212] / [i915#5608])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([fdo#109285])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-8: NOTRUN -> [SKIP][24] ([fdo#109285])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#5274])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][26] ([i915#5274])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-8: NOTRUN -> [SKIP][27] ([i915#5354])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html
- bat-dg2-9: NOTRUN -> [SKIP][28] ([i915#5354])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#3555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][30] ([i915#3555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#3708])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][32] ([i915#3708])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][33] ([i915#3708] / [i915#4077]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-9: NOTRUN -> [SKIP][34] ([i915#3708] / [i915#4077]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][35] ([i915#3291] / [i915#3708]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][36] ([i915#3291] / [i915#3708]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/bat-dg2-8/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7635 -> IGTPW_10392
CI-20190529: 20190529
CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@kms_vrr@flip-basic-fastset
-igt@kms_vrr@seamless-rr-switch-drrs
-igt@kms_vrr@seamless-rr-switch-vrr
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
[-- Attachment #2: Type: text/html, Size: 13812 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
2023-12-11 20:04 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-12-11 20:55 ` Patchwork
2023-12-12 8:29 ` Kamil Konieczny
2023-12-11 21:38 ` ✓ CI.xeBAT: success " Patchwork
` (5 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2023-12-11 20:55 UTC (permalink / raw)
To: sai.gowtham.ch; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 85696 bytes --]
== Series Details ==
Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
URL : https://patchwork.freedesktop.org/series/127630/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14007_full -> IGTPW_10392_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10392_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10392_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
Participating hosts (9 -> 7)
------------------------------
Missing (2): shard-snb-0 shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10392_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@fairslice:
- shard-dg1: NOTRUN -> [ABORT][1] +2 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_balancer@full-late-pulse:
- shard-tglu: NOTRUN -> [INCOMPLETE][2] +7 other tests incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_balancer@full-late-pulse.html
* igt@gem_exec_whisper@basic-fds-forked-all:
- shard-glk: NOTRUN -> [INCOMPLETE][3] +8 other tests incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-mtlp: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-mtlp: NOTRUN -> [ABORT][5] +12 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg2: NOTRUN -> [ABORT][6] +1 other test abort
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@perf@invalid-oa-metric-set-id:
- shard-glk: NOTRUN -> [ABORT][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk1/igt@perf@invalid-oa-metric-set-id.html
* igt@perf_pmu@busy-hang@rcs0:
- shard-dg2: NOTRUN -> [INCOMPLETE][8] +4 other tests incomplete
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@perf_pmu@busy-hang@rcs0.html
- shard-rkl: NOTRUN -> [ABORT][9] +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@perf_pmu@busy-hang@rcs0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][10] +11 other tests incomplete
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [INCOMPLETE][11] +4 other tests incomplete
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][12] +6 other tests incomplete
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
#### Warnings ####
* igt@gem_exec_balancer@full-late-pulse:
- shard-rkl: [ABORT][13] -> [INCOMPLETE][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_balancer@full-late-pulse.html
New tests
---------
New tests have been introduced between CI_DRM_14007_full and IGTPW_10392_full:
### New IGT tests (1) ###
* igt@i915_power:
- Statuses : 2 incomplete(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10392_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#6230])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#6230])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#6230])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8411])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4873])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_caching@writes.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#7297])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#6335])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#6335])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [INCOMPLETE][28] ([i915#9364])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1099]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][38] ([i915#7975] / [i915#8213])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][39] ([i915#9606])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
- shard-rkl: NOTRUN -> [FAIL][40] ([i915#9606])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][41] ([i915#9606])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_exec_fair@basic-none-share.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4473] / [i915#4771])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][44] ([i915#2842]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][47] ([i915#2842])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#7697])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#7697])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#7697])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#7697])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#7697])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +12 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +11 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +8 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +12 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [PASS][58] -> [ABORT][59] ([i915#7392])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_exec_whisper@basic-fds-forked-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][60] ([i915#6755] / [i915#7392])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@gem_exec_whisper@basic-fds-forked-all.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +8 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pread@self.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][83] ([fdo#109312])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][84] ([i915#5889])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4077]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4958])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4958])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][95] ([i915#3318])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@gem_userptr_blits@vma-merge.html
- shard-dg1: NOTRUN -> [FAIL][96] ([i915#3318])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][97] ([i915#3318])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_userptr_blits@vma-merge.html
- shard-glk: NOTRUN -> [FAIL][98] ([i915#3318])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][99] ([i915#3318])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_userptr_blits@vma-merge.html
- shard-dg2: NOTRUN -> [FAIL][100] ([i915#3318])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109289]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html
- shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109289]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gen7_exec_parse@bitmasks.html
- shard-dg1: NOTRUN -> [SKIP][103] ([fdo#109289]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gen7_exec_parse@bitmasks.html
- shard-tglu: NOTRUN -> [SKIP][104] ([fdo#109289]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [INCOMPLETE][110] ([i915#9200])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][111] ([i915#9820])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [WARN][112] ([i915#7356])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#8399])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#6621])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#6621])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6621])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#8925])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#8925])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3555] / [i915#8925])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4387])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#4387])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4387])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#4387])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8437])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* {igt@i915_power} (NEW):
- shard-snb: NOTRUN -> [INCOMPLETE][126] ([i915#2295])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@i915_power.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#7984])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][128] ([fdo#109303])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][129] ([i915#9311])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4212]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#6228])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6228])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][137] ([fdo#109271] / [i915#1769])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][140] ([fdo#109271] / [i915#1769])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#5286]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5286]) +6 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111615] / [i915#5286]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][144] ([fdo#111614]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][145] ([fdo#111614]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][146] ([fdo#111614] / [i915#3638]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3638]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111614]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6187])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111615]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][151] ([fdo#111615]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4538] / [i915#5190]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][153] ([fdo#110723]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111615])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][156] ([fdo#111615])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#5354] / [i915#6095]) +42 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#5354] / [i915#6095]) +26 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#5354]) +81 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-snb: NOTRUN -> [SKIP][160] ([fdo#109271]) +455 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +59 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5354]) +35 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#5354] / [i915#6095]) +32 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#7828]) +9 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#7828]) +8 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +9 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][167] ([fdo#111827]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_chamelium_color@ctm-0-75.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111827]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111827]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111827]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111827]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#7828]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#7828]) +8 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +8 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#7116]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#7118])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#6944]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +8 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3359]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3359]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109279] / [i915#3359])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3359]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][189] ([fdo#109279] / [i915#3359])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][190] ([fdo#109271]) +188 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#3359]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3359])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825]) +14 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][194] ([fdo#109274] / [i915#5354]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213] / [i915#5608])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#4103]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109274]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9809]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#4103])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#4213])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#8588])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#8588])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8588])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#8588])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8588])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3804])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8812])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8812])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#8812])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840] / [i915#9159])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_dsc@dsc-basic.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#1839])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#1839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#658])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#658])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#658])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][226] ([fdo#109274] / [i915#3637]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3637]) +6 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#8381]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8381]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][230] ([fdo#109274]) +9 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8381]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#2672]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#2672]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8810]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#2672]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109285])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg1: NOTRUN -> [SKIP][240] ([fdo#109285])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_force_connector_basic@force-load-detect.html
- shard-tglu: NOTRUN -> [SKIP][241] ([fdo#109285])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg2: NOTRUN -> [SKIP][242] ([fdo#109285])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +13 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][244] -> [SKIP][245] ([fdo#109271]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][246] ([fdo#111825]) +40 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109280]) +25 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5460])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#3458]) +13 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +18 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#3458]) +14 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][252] ([fdo#110189]) +12 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#1825]) +17 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#8708]) +13 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8708]) +6 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][256] ([fdo#111825] / [i915#1825]) +33 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][262] ([fdo#109289]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][263] ([i915#4573]) +1 other test fail
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9423]) +7 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#9423]) +7 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#5176]) +7 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#9423]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#5235]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#5235]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#5235]) +7 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#5235]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#5235]) +7 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5235]) +9 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#9519])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9519])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][276] ([fdo#109293]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_pm_rpm@pc8-residency.html
- shard-dg2: NOTRUN -> [SKIP][277] ([fdo#109293] / [fdo#109506]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html
- shard-rkl: NOTRUN -> [SKIP][278] ([fdo#109293] / [fdo#109506]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_pm_rpm@pc8-residency.html
- shard-dg1: NOTRUN -> [SKIP][279] ([fdo#109293] / [fdo#109506]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][280] ([fdo#109293] / [fdo#109506]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#4077]) +11 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#6524] / [i915#6805]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#6524]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#6524]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#9683])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#9683])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#9683])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][288] ([fdo#111068] / [i915#9683]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][289] ([fdo#111068] / [i915#9683])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#4348]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#9683]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][292] ([fdo#111068] / [i915#9683]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][293] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#5190]) +6 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#4235] / [i915#5190])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [INCOMPLETE][296] ([i915#8875] / [i915#9569])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#4235])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555]) +7 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8808]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#2437] / [i915#9412])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#2437] / [i915#9412])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#2437] / [i915#9412])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][304] ([fdo#109271] / [i915#2437])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#2437] / [i915#9412])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@invalid-oa-format-id:
- shard-dg2: NOTRUN -> [ABORT][306] ([i915#9847])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@perf@invalid-oa-format-id.html
* igt@perf@rc6-disable:
- shard-dg1: NOTRUN -> [ABORT][307] ([i915#9847])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf@rc6-disable.html
* igt@perf_pmu:
- shard-tglu: NOTRUN -> [INCOMPLETE][308] ([i915#2295]) +1 other test incomplete
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@perf_pmu.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][309] ([i915#4349]) +1 other test fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: NOTRUN -> [ABORT][310] ([i915#9847]) +2 other tests abort
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@render-node-busy-idle@rcs0:
- shard-rkl: NOTRUN -> [ABORT][311] ([i915#9847]) +1 other test abort
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@perf_pmu@render-node-busy-idle@rcs0.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3708])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#3291] / [i915#3708])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][314] ([fdo#109295] / [i915#3291] / [i915#3708])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#3708])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@prime_vgem@basic-read.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#2575]) +7 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][317] ([fdo#109315] / [i915#2575]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#2575]) +6 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][319] ([fdo#109315]) +7 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#2575]) +7 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#2575]) +6 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@vc4/vc4_perfmon@create-single-perfmon.html
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#7711]) +6 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#7711]) +9 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#7711]) +8 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#7711]) +9 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [SKIP][326] ([fdo#109271]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.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#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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[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#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7635 -> IGTPW_10392
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
[-- Attachment #2: Type: text/html, Size: 109885 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
2023-12-11 20:04 ` ✓ Fi.CI.BAT: success for " Patchwork
2023-12-11 20:55 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-12-11 21:38 ` Patchwork
2023-12-12 7:09 ` [PATCH i-g-t] " Kumar, Janga Rahul
` (4 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-12-11 21:38 UTC (permalink / raw)
To: sai.gowtham.ch; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2949 bytes --]
== Series Details ==
Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
URL : https://patchwork.freedesktop.org/series/127630/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7635_BAT -> XEIGTPW_10392_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10392_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7635/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10392/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3:
- bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#906]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7635/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10392/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html
* igt@xe_prime_self_import@basic-with_fd_dup:
- bat-atsm-2: [PASS][5] -> [FAIL][6] ([Intel XE#999])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7635/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10392/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [FAIL][7] ([Intel XE#480]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7635/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10392/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#906]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/906
[Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999
Build changes
-------------
* IGT: IGT_7635 -> IGTPW_10392
* Linux: xe-566-00175313322325f73095e61b6cbe550f47184408 -> xe-567-40d280365ff402063171ef96571c19b60db87971
IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-566-00175313322325f73095e61b6cbe550f47184408: 00175313322325f73095e61b6cbe550f47184408
xe-567-40d280365ff402063171ef96571c19b60db87971: 40d280365ff402063171ef96571c19b60db87971
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10392/index.html
[-- Attachment #2: Type: text/html, Size: 3684 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
` (2 preceding siblings ...)
2023-12-11 21:38 ` ✓ CI.xeBAT: success " Patchwork
@ 2023-12-12 7:09 ` Kumar, Janga Rahul
2023-12-12 8:22 ` Kamil Konieczny
` (3 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Kumar, Janga Rahul @ 2023-12-12 7:09 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: Monday, December 11, 2023 6:38 PM
> To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham
> <sai.gowtham.ch@intel.com>
> Subject: [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test.
>
> From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
>
> implement xe_for_each_engine in basic-all test so that, it queries all the
> supported classes and instances for a gt and submits workload to it. which fixes
> the num_placements issue.
>
> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> ---
> tests/intel/xe_exec_store.c | 131 ++++++++----------------------------
> 1 file changed, 27 insertions(+), 104 deletions(-)
>
> diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c index
> 6d5a1bbac..7a66d744c 100644
> --- a/tests/intel/xe_exec_store.c
> +++ b/tests/intel/xe_exec_store.c
> @@ -79,8 +79,10 @@ static void cond_batch(struct data *data, uint64_t addr,
> int value)
> * Description: Basic test to verify store dword.
> * SUBTEST: basic-cond-batch
> * Description: Basic test to verify cond batch end instruction.
> + * SUBTEST: basic-all
> + * Description: Test to verify store dword on all available engines.
> */
> -static void basic_inst(int fd, int inst_type)
> +static void basic_inst(int fd, int inst_type, struct
> +drm_xe_engine_class_instance *eci)
> {
> struct drm_xe_sync sync = {
> .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
> @@ -92,9 +94,9 @@ static void basic_inst(int fd, int inst_type)
> .syncs = to_user_pointer(&sync),
> };
> struct data *data;
> - struct drm_xe_engine *engine;
> uint32_t vm;
> uint32_t exec_queue;
> + uint32_t bind_engine;
> uint32_t syncobj;
> size_t bo_size;
> int value = 0x123456;
> @@ -109,12 +111,13 @@ static void basic_inst(int fd, int inst_type)
> bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
> xe_get_default_alignment(fd));
>
> - engine = xe_engine(fd, 1);
> bo = xe_bo_create(fd, vm, bo_size,
> - vram_if_possible(fd, engine->instance.gt_id),
> + vram_if_possible(fd, eci->gt_id),
>
> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
>
> - xe_vm_bind_async(fd, vm, engine->instance.gt_id, bo, 0, addr, bo_size,
> &sync, 1);
> + exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
> + bind_engine = xe_bind_exec_queue_create(fd, vm, 0, true);
> + xe_vm_bind_async(fd, vm, bind_engine, bo, 0, addr, bo_size, &sync, 1);
> data = xe_bo_map(fd, bo, bo_size);
>
> if (inst_type == STORE)
> @@ -127,7 +130,7 @@ static void basic_inst(int fd, int inst_type)
> else
> igt_assert_f(inst_type < 2, "Entered wrong inst_type.\n");
>
> - exec_queue = xe_exec_queue_create(fd, vm, &engine->instance, 0);
> + exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
> exec.exec_queue_id = exec_queue;
> exec.address = data->addr;
> sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL; @@ -243,115 +246,35
> @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance
> *eci,
> xe_vm_destroy(fd, vm);
> }
>
> -/**
> - * SUBTEST: basic-all
> - * Description: Test to verify store dword on all available engines.
> - */
> -static void store_all(int fd, int gt, int class) -{
> - struct drm_xe_sync sync[2] = {
> - { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags =
> DRM_XE_SYNC_FLAG_SIGNAL, },
> - { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags =
> DRM_XE_SYNC_FLAG_SIGNAL, }
> - };
> - struct drm_xe_exec exec = {
> - .num_batch_buffer = 1,
> - .num_syncs = 2,
> - .syncs = to_user_pointer(&sync),
> - };
> -
> - struct data *data;
> - uint32_t syncobjs[MAX_INSTANCE];
> - uint32_t exec_queues[MAX_INSTANCE];
> - uint32_t vm;
> - size_t bo_size;
> - uint64_t addr = 0x100000;
> - uint32_t bo = 0;
> - struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
> - struct drm_xe_engine_class_instance *hwe;
> - int i, num_placements = 0;
> -
> - vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT,
> 0);
> - bo_size = sizeof(*data);
> - bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
> - xe_get_default_alignment(fd));
> -
> - bo = xe_bo_create(fd, vm, bo_size,
> - vram_if_possible(fd, 0),
> -
> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> - data = xe_bo_map(fd, bo, bo_size);
> -
> - xe_for_each_engine(fd, hwe) {
> - if (hwe->engine_class != class || hwe->gt_id != gt)
> - continue;
> - eci[num_placements++] = *hwe;
> - }
> -
> - igt_require(num_placements);
> -
> - for (i = 0; i < num_placements; i++) {
> - struct drm_xe_exec_queue_create create = {
> - .vm_id = vm,
> - .width = 1,
> - .num_placements = num_placements,
> - .instances = to_user_pointer(eci),
> - };
> -
> - igt_assert_eq(igt_ioctl(fd,
> DRM_IOCTL_XE_EXEC_QUEUE_CREATE,
> - &create), 0);
> - exec_queues[i] = create.exec_queue_id;
> - syncobjs[i] = syncobj_create(fd, 0);
> - };
> -
> - sync[0].handle = syncobj_create(fd, 0);
> - xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> -
> - for (i = 0; i < num_placements; i++) {
> -
> - store_dword_batch(data, addr, i);
> - sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
> - sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
> - sync[1].handle = syncobjs[i];
> -
> - exec.exec_queue_id = exec_queues[i];
> - exec.address = data->addr;
> - xe_exec(fd, &exec);
> -
> - igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
> NULL));
> - igt_assert_eq(data->data, i);
> - }
> -
> - xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
> - syncobj_destroy(fd, sync[0].handle);
> - munmap(data, bo_size);
> - gem_close(fd, bo);
> -
> - for (i = 0; i < num_placements; i++) {
> - syncobj_destroy(fd, syncobjs[i]);
> - xe_exec_queue_destroy(fd, exec_queues[i]);
> - }
> - xe_vm_destroy(fd, vm);
> -}
> -
> igt_main
> {
> struct drm_xe_engine_class_instance *hwe;
> - int fd, class, gt;
> + int fd;
> + struct drm_xe_engine *engine;
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> xe_device_get(fd);
> }
>
> - igt_subtest("basic-store")
> - basic_inst(fd, STORE);
> + igt_subtest("basic-store") {
> + engine = xe_engine(fd, 1);
> + basic_inst(fd, STORE, &engine->instance);
> + }
>
> - igt_subtest("basic-cond-batch")
> - basic_inst(fd, COND_BATCH);
> + igt_subtest("basic-cond-batch") {
> + engine = xe_engine(fd, 1);
> + basic_inst(fd, COND_BATCH, &engine->instance);
> + }
>
> - igt_subtest("basic-all") {
> - xe_for_each_gt(fd, gt)
> - xe_for_each_engine_class(class)
> - store_all(fd, gt, class);
> + igt_subtest_with_dynamic("basic-all") {
> + xe_for_each_engine(fd, hwe) {
> + igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d",
> + xe_engine_class_string(hwe->engine_class),
> + hwe->engine_instance,
> + hwe->gt_id);
> + basic_inst(fd, STORE, hwe);
> + }
> }
>
> igt_subtest("cachelines")
> --
LGTM,
Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> 2.39.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
` (3 preceding siblings ...)
2023-12-12 7:09 ` [PATCH i-g-t] " Kumar, Janga Rahul
@ 2023-12-12 8:22 ` Kamil Konieczny
2023-12-13 6:48 ` ✗ Fi.CI.IGT: failure for " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2023-12-12 8:22 UTC (permalink / raw)
To: igt-dev
Hi Sai,
On 2023-12-11 at 18:37:35 +0530, sai.gowtham.ch@intel.com wrote:
> From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
>
One small nit about subject:
[PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test.
Add 'tests/', remove '.c', remove final dot '.', also imho it could be
somewhat shorter:
[PATCH i-g-t] tests/intel/xe_exec_store: Fix basic-all subtest
I will merge it with this correction.
Regards,
Kamil
> implement xe_for_each_engine in basic-all test so that,
> it queries all the supported classes and instances for a gt
> and submits workload to it. which fixes the num_placements issue.
>
> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> ---
> tests/intel/xe_exec_store.c | 131 ++++++++----------------------------
> 1 file changed, 27 insertions(+), 104 deletions(-)
>
> diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
> index 6d5a1bbac..7a66d744c 100644
> --- a/tests/intel/xe_exec_store.c
> +++ b/tests/intel/xe_exec_store.c
> @@ -79,8 +79,10 @@ static void cond_batch(struct data *data, uint64_t addr, int value)
> * Description: Basic test to verify store dword.
> * SUBTEST: basic-cond-batch
> * Description: Basic test to verify cond batch end instruction.
> + * SUBTEST: basic-all
> + * Description: Test to verify store dword on all available engines.
> */
> -static void basic_inst(int fd, int inst_type)
> +static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instance *eci)
> {
> struct drm_xe_sync sync = {
> .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
> @@ -92,9 +94,9 @@ static void basic_inst(int fd, int inst_type)
> .syncs = to_user_pointer(&sync),
> };
> struct data *data;
> - struct drm_xe_engine *engine;
> uint32_t vm;
> uint32_t exec_queue;
> + uint32_t bind_engine;
> uint32_t syncobj;
> size_t bo_size;
> int value = 0x123456;
> @@ -109,12 +111,13 @@ static void basic_inst(int fd, int inst_type)
> bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
> xe_get_default_alignment(fd));
>
> - engine = xe_engine(fd, 1);
> bo = xe_bo_create(fd, vm, bo_size,
> - vram_if_possible(fd, engine->instance.gt_id),
> + vram_if_possible(fd, eci->gt_id),
> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
>
> - xe_vm_bind_async(fd, vm, engine->instance.gt_id, bo, 0, addr, bo_size, &sync, 1);
> + exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
> + bind_engine = xe_bind_exec_queue_create(fd, vm, 0, true);
> + xe_vm_bind_async(fd, vm, bind_engine, bo, 0, addr, bo_size, &sync, 1);
> data = xe_bo_map(fd, bo, bo_size);
>
> if (inst_type == STORE)
> @@ -127,7 +130,7 @@ static void basic_inst(int fd, int inst_type)
> else
> igt_assert_f(inst_type < 2, "Entered wrong inst_type.\n");
>
> - exec_queue = xe_exec_queue_create(fd, vm, &engine->instance, 0);
> + exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
> exec.exec_queue_id = exec_queue;
> exec.address = data->addr;
> sync.flags &= DRM_XE_SYNC_FLAG_SIGNAL;
> @@ -243,115 +246,35 @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance *eci,
> xe_vm_destroy(fd, vm);
> }
>
> -/**
> - * SUBTEST: basic-all
> - * Description: Test to verify store dword on all available engines.
> - */
> -static void store_all(int fd, int gt, int class)
> -{
> - struct drm_xe_sync sync[2] = {
> - { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> - { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }
> - };
> - struct drm_xe_exec exec = {
> - .num_batch_buffer = 1,
> - .num_syncs = 2,
> - .syncs = to_user_pointer(&sync),
> - };
> -
> - struct data *data;
> - uint32_t syncobjs[MAX_INSTANCE];
> - uint32_t exec_queues[MAX_INSTANCE];
> - uint32_t vm;
> - size_t bo_size;
> - uint64_t addr = 0x100000;
> - uint32_t bo = 0;
> - struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
> - struct drm_xe_engine_class_instance *hwe;
> - int i, num_placements = 0;
> -
> - vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0);
> - bo_size = sizeof(*data);
> - bo_size = ALIGN(bo_size + xe_cs_prefetch_size(fd),
> - xe_get_default_alignment(fd));
> -
> - bo = xe_bo_create(fd, vm, bo_size,
> - vram_if_possible(fd, 0),
> - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> - data = xe_bo_map(fd, bo, bo_size);
> -
> - xe_for_each_engine(fd, hwe) {
> - if (hwe->engine_class != class || hwe->gt_id != gt)
> - continue;
> - eci[num_placements++] = *hwe;
> - }
> -
> - igt_require(num_placements);
> -
> - for (i = 0; i < num_placements; i++) {
> - struct drm_xe_exec_queue_create create = {
> - .vm_id = vm,
> - .width = 1,
> - .num_placements = num_placements,
> - .instances = to_user_pointer(eci),
> - };
> -
> - igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE,
> - &create), 0);
> - exec_queues[i] = create.exec_queue_id;
> - syncobjs[i] = syncobj_create(fd, 0);
> - };
> -
> - sync[0].handle = syncobj_create(fd, 0);
> - xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> -
> - for (i = 0; i < num_placements; i++) {
> -
> - store_dword_batch(data, addr, i);
> - sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
> - sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
> - sync[1].handle = syncobjs[i];
> -
> - exec.exec_queue_id = exec_queues[i];
> - exec.address = data->addr;
> - xe_exec(fd, &exec);
> -
> - igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, NULL));
> - igt_assert_eq(data->data, i);
> - }
> -
> - xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
> - syncobj_destroy(fd, sync[0].handle);
> - munmap(data, bo_size);
> - gem_close(fd, bo);
> -
> - for (i = 0; i < num_placements; i++) {
> - syncobj_destroy(fd, syncobjs[i]);
> - xe_exec_queue_destroy(fd, exec_queues[i]);
> - }
> - xe_vm_destroy(fd, vm);
> -}
> -
> igt_main
> {
> struct drm_xe_engine_class_instance *hwe;
> - int fd, class, gt;
> + int fd;
> + struct drm_xe_engine *engine;
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> xe_device_get(fd);
> }
>
> - igt_subtest("basic-store")
> - basic_inst(fd, STORE);
> + igt_subtest("basic-store") {
> + engine = xe_engine(fd, 1);
> + basic_inst(fd, STORE, &engine->instance);
> + }
>
> - igt_subtest("basic-cond-batch")
> - basic_inst(fd, COND_BATCH);
> + igt_subtest("basic-cond-batch") {
> + engine = xe_engine(fd, 1);
> + basic_inst(fd, COND_BATCH, &engine->instance);
> + }
>
> - igt_subtest("basic-all") {
> - xe_for_each_gt(fd, gt)
> - xe_for_each_engine_class(class)
> - store_all(fd, gt, class);
> + igt_subtest_with_dynamic("basic-all") {
> + xe_for_each_engine(fd, hwe) {
> + igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d",
> + xe_engine_class_string(hwe->engine_class),
> + hwe->engine_instance,
> + hwe->gt_id);
> + basic_inst(fd, STORE, hwe);
> + }
> }
>
> igt_subtest("cachelines")
> --
> 2.39.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 20:55 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-12-12 8:29 ` Kamil Konieczny
2023-12-13 14:41 ` Illipilli, TejasreeX
0 siblings, 1 reply; 12+ messages in thread
From: Kamil Konieczny @ 2023-12-12 8:29 UTC (permalink / raw)
To: igt-dev; +Cc: lgci.bug.filing, I915-ci-infra
Hi,
below is unrelated to Xe test.
Regards,
Kamil
On 2023-12-11 at 20:55:17 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
> URL : https://patchwork.freedesktop.org/series/127630/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_14007_full -> IGTPW_10392_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10392_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10392_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
>
> Participating hosts (9 -> 7)
> ------------------------------
>
> Missing (2): shard-snb-0 shard-glk-0
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10392_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_exec_balancer@fairslice:
> - shard-dg1: NOTRUN -> [ABORT][1] +2 other tests abort
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_exec_balancer@fairslice.html
>
> * igt@gem_exec_balancer@full-late-pulse:
> - shard-tglu: NOTRUN -> [INCOMPLETE][2] +7 other tests incomplete
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_balancer@full-late-pulse.html
>
> * igt@gem_exec_whisper@basic-fds-forked-all:
> - shard-glk: NOTRUN -> [INCOMPLETE][3] +8 other tests incomplete
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html
>
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
> - shard-mtlp: NOTRUN -> [INCOMPLETE][4]
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
>
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
> - shard-mtlp: NOTRUN -> [ABORT][5] +12 other tests abort
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
> - shard-dg2: NOTRUN -> [ABORT][6] +1 other test abort
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
>
> * igt@perf@invalid-oa-metric-set-id:
> - shard-glk: NOTRUN -> [ABORT][7]
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk1/igt@perf@invalid-oa-metric-set-id.html
>
> * igt@perf_pmu@busy-hang@rcs0:
> - shard-dg2: NOTRUN -> [INCOMPLETE][8] +4 other tests incomplete
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@perf_pmu@busy-hang@rcs0.html
> - shard-rkl: NOTRUN -> [ABORT][9] +1 other test abort
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@perf_pmu@busy-hang@rcs0.html
>
> * igt@perf_pmu@most-busy-check-all@rcs0:
> - shard-snb: NOTRUN -> [INCOMPLETE][10] +11 other tests incomplete
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@perf_pmu@most-busy-check-all@rcs0.html
>
> * igt@perf_pmu@most-busy-idle-check-all@rcs0:
> - shard-rkl: NOTRUN -> [INCOMPLETE][11] +4 other tests incomplete
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
> - shard-dg1: NOTRUN -> [INCOMPLETE][12] +6 other tests incomplete
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
>
>
> #### Warnings ####
>
> * igt@gem_exec_balancer@full-late-pulse:
> - shard-rkl: [ABORT][13] -> [INCOMPLETE][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_balancer@full-late-pulse.html
>
>
> New tests
> ---------
>
> New tests have been introduced between CI_DRM_14007_full and IGTPW_10392_full:
>
> ### New IGT tests (1) ###
>
> * igt@i915_power:
> - Statuses : 2 incomplete(s)
> - Exec time: [0.0] s
>
[...cut...]
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7635 -> IGTPW_10392
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
> IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
` (4 preceding siblings ...)
2023-12-12 8:22 ` Kamil Konieczny
@ 2023-12-13 6:48 ` Patchwork
2023-12-13 13:35 ` Patchwork
2023-12-13 14:06 ` ✓ Fi.CI.IGT: success " Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-12-13 6:48 UTC (permalink / raw)
To: sai.gowtham.ch; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 90123 bytes --]
== Series Details ==
Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
URL : https://patchwork.freedesktop.org/series/127630/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14007_full -> IGTPW_10392_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10392_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10392_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
Participating hosts (9 -> 7)
------------------------------
Missing (2): shard-snb-0 shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10392_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@parallel-ordering:
- shard-mtlp: NOTRUN -> [ABORT][1] +2 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-7/igt@gem_exec_balancer@parallel-ordering.html
* igt@i915_pm_rps@fence-order:
- shard-snb: NOTRUN -> [INCOMPLETE][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@i915_pm_rps@fence-order.html
* igt@perf@invalid-oa-metric-set-id:
- shard-glk: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk1/igt@perf@invalid-oa-metric-set-id.html
- shard-dg1: NOTRUN -> [ABORT][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf@invalid-oa-metric-set-id.html
Known issues
------------
Here are the changes found in IGTPW_10392_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_caching@writes.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#7297])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#9364])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][28] ([i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [ABORT][29] ([i915#9856])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@fairslice:
- shard-rkl: NOTRUN -> [INCOMPLETE][30] ([i915#9856])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_balancer@fairslice.html
- shard-dg1: NOTRUN -> [ABORT][31] ([i915#9855])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_balancer@full-late-pulse:
- shard-tglu: NOTRUN -> [INCOMPLETE][32] ([i915#9856]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_balancer@full-late-pulse.html
* igt@gem_exec_balancer@invalid-balancer:
- shard-dg2: NOTRUN -> [INCOMPLETE][33] ([i915#9856])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_balancer@invalid-balancer.html
- shard-dg1: NOTRUN -> [INCOMPLETE][34] ([i915#9856])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_balancer@invalid-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][35] ([i915#9606])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][37] ([i915#9606])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_exec_fair@basic-none-share.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473] / [i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][40] ([i915#2842]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#7697])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#7697])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#7697])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#7697])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#7697])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +11 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +12 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [PASS][54] -> [ABORT][55] ([i915#7392])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_exec_whisper@basic-fds-forked-all:
- shard-glk: NOTRUN -> [INCOMPLETE][56] ([i915#9857]) +2 other tests incomplete
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html
- shard-tglu: NOTRUN -> [INCOMPLETE][57] ([i915#6755] / [i915#7392])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@gem_exec_whisper@basic-fds-forked-all.html
* igt@gem_exec_whisper@basic-normal-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][58] ([i915#9857]) +1 other test incomplete
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@gem_exec_whisper@basic-normal-all.html
- shard-mtlp: NOTRUN -> [ABORT][59] ([i915#9857]) +1 other test abort
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_whisper@basic-normal-all.html
* igt@gem_exec_whisper@basic-sync:
- shard-snb: NOTRUN -> [INCOMPLETE][60] ([i915#9857]) +3 other tests incomplete
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb2/igt@gem_exec_whisper@basic-sync.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +8 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pread@self.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][83] ([fdo#109312])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][84] ([i915#5889])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4077]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4958])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4958])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][95] ([i915#3318])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@gem_userptr_blits@vma-merge.html
- shard-dg1: NOTRUN -> [FAIL][96] ([i915#3318])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][97] ([i915#3318])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_userptr_blits@vma-merge.html
- shard-glk: NOTRUN -> [FAIL][98] ([i915#3318])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][99] ([i915#3318])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_userptr_blits@vma-merge.html
- shard-dg2: NOTRUN -> [FAIL][100] ([i915#3318])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109289]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html
- shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109289]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gen7_exec_parse@bitmasks.html
- shard-dg1: NOTRUN -> [SKIP][103] ([fdo#109289]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gen7_exec_parse@bitmasks.html
- shard-tglu: NOTRUN -> [SKIP][104] ([fdo#109289]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [INCOMPLETE][110] ([i915#9200])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][111] ([i915#9820])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [WARN][112] ([i915#7356])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#8399])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#9858]) +1 other test incomplete
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-snb: NOTRUN -> [INCOMPLETE][116] ([i915#9858])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-mtlp: NOTRUN -> [INCOMPLETE][117] ([i915#9858])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-mtlp: NOTRUN -> [ABORT][118] ([i915#9855]) +3 other tests abort
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg2: NOTRUN -> [ABORT][119] ([i915#9855])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-rkl: NOTRUN -> [ABORT][120] ([i915#9855])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][121] ([i915#9858])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-tglu: NOTRUN -> [INCOMPLETE][122] ([i915#9858])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#6621])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#6621])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6621])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#8925])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8925])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#8925])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4387])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#4387])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4387])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#4387])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8437])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7984])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][135] ([fdo#109303])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][136] ([i915#9311])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#4212]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4212]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4212]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#6228])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6228])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][144] ([fdo#109271] / [i915#1769])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][147] ([fdo#109271] / [i915#1769])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#5286]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][150] ([fdo#111615] / [i915#5286]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][151] ([fdo#111614]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][152] ([fdo#111614]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][153] ([fdo#111614] / [i915#3638]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3638]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111614]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6187])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][157] ([fdo#111615]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][158] ([fdo#111615]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#4538] / [i915#5190]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][160] ([fdo#110723]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111615])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][163] ([fdo#111615])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#5354] / [i915#6095]) +42 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#5354] / [i915#6095]) +26 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#5354]) +81 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-snb: NOTRUN -> [SKIP][167] ([fdo#109271]) +455 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#5354] / [i915#6095]) +59 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#5354]) +35 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#5354] / [i915#6095]) +32 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#7828]) +9 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#7828]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#7828]) +9 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][174] ([fdo#111827]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_chamelium_color@ctm-0-75.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([fdo#111827]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][176] ([fdo#111827]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111827]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111827]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#7828]) +8 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#7828]) +8 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +8 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#7116]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#7118])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#9424])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#9424])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9424])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#9424])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#6944]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8814])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555]) +8 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3359]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3359]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][194] ([fdo#109279] / [i915#3359])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3359]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][196] ([fdo#109279] / [i915#3359])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][197] ([fdo#109271]) +188 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3359]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3359])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825]) +14 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][201] ([fdo#109274] / [i915#5354]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213] / [i915#5608])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#4103]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#4103] / [i915#4213]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109274]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9809]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#4103])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4213])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#8588])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#8588])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#8588])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#8588])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8588])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555]) +9 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3804])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#8812])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8812])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#8812])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840] / [i915#9159])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_dsc@dsc-basic.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#1839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#1839])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#1839])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#1839])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#658])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#658])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#658])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][233] ([fdo#109274] / [i915#3637]) +7 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#3637]) +6 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#8381]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8381]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][237] ([fdo#109274]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#8381]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#2672]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8810]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][246] ([fdo#109285])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg1: NOTRUN -> [SKIP][247] ([fdo#109285])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_force_connector_basic@force-load-detect.html
- shard-tglu: NOTRUN -> [SKIP][248] ([fdo#109285])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg2: NOTRUN -> [SKIP][249] ([fdo#109285])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8708]) +13 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][251] -> [SKIP][252] ([fdo#109271]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][253] ([fdo#111825]) +40 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][254] ([fdo#109280]) +25 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#5460])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3458]) +13 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3023]) +18 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#3458]) +14 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][259] ([fdo#110189]) +12 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#1825]) +17 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +13 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8708]) +6 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][263] ([fdo#111825] / [i915#1825]) +33 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][269] ([fdo#109289]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][270] ([i915#4573]) +1 other test fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#9423]) +7 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#9423]) +7 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5176]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#9423]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#5235]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#5235]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#5235]) +7 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#5235]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#5235]) +7 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#5235]) +9 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#9519])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#9519])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][283] ([fdo#109293]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_pm_rpm@pc8-residency.html
- shard-dg2: NOTRUN -> [SKIP][284] ([fdo#109293] / [fdo#109506]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html
- shard-rkl: NOTRUN -> [SKIP][285] ([fdo#109293] / [fdo#109506]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_pm_rpm@pc8-residency.html
- shard-dg1: NOTRUN -> [SKIP][286] ([fdo#109293] / [fdo#109506]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][287] ([fdo#109293] / [fdo#109506]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#4077]) +11 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#6524] / [i915#6805]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#6524]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#6524]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#9683])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#9683])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#9683])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][295] ([fdo#111068] / [i915#9683]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][296] ([fdo#111068] / [i915#9683])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#4348]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#9683]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][299] ([fdo#111068] / [i915#9683]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][300] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#5190]) +6 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#4235] / [i915#5190])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [INCOMPLETE][303] ([i915#8875] / [i915#9569])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#4235])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#3555]) +7 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8808]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#2437] / [i915#9412])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#2437] / [i915#9412])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#2437] / [i915#9412])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][311] ([fdo#109271] / [i915#2437])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#2437] / [i915#9412])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@invalid-oa-format-id:
- shard-dg2: NOTRUN -> [ABORT][313] ([i915#9847]) +1 other test abort
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@perf@invalid-oa-format-id.html
* igt@perf@rc6-disable:
- shard-dg1: NOTRUN -> [ABORT][314] ([i915#9847])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf@rc6-disable.html
* igt@perf_pmu:
- shard-tglu: NOTRUN -> [INCOMPLETE][315] ([i915#2295])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@perf_pmu.html
* igt@perf_pmu@busy-accuracy-50@rcs0:
- shard-tglu: NOTRUN -> [INCOMPLETE][316] ([i915#9853]) +2 other tests incomplete
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@perf_pmu@busy-accuracy-50@rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][317] ([i915#4349]) +1 other test fail
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: NOTRUN -> [ABORT][318] ([i915#9853])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
- shard-dg1: NOTRUN -> [ABORT][319] ([i915#9853])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-hang@rcs0:
- shard-dg2: NOTRUN -> [INCOMPLETE][320] ([i915#9853]) +3 other tests incomplete
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@perf_pmu@busy-hang@rcs0.html
- shard-rkl: NOTRUN -> [ABORT][321] ([i915#9853])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@perf_pmu@busy-hang@rcs0.html
* igt@perf_pmu@frequency:
- shard-glk: NOTRUN -> [INCOMPLETE][322] ([i915#9853]) +3 other tests incomplete
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@perf_pmu@frequency.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: NOTRUN -> [ABORT][323] ([i915#9847]) +4 other tests abort
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][324] ([i915#9853]) +5 other tests incomplete
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [INCOMPLETE][325] ([i915#9853]) +3 other tests incomplete
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][326] ([i915#9853]) +4 other tests incomplete
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@render-node-busy-idle@rcs0:
- shard-rkl: NOTRUN -> [ABORT][327] ([i915#9847]) +1 other test abort
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@perf_pmu@render-node-busy-idle@rcs0.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3708])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#3291] / [i915#3708])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][330] ([fdo#109295] / [i915#3291] / [i915#3708])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#3708])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@prime_vgem@basic-read.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#2575]) +7 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][333] ([fdo#109315] / [i915#2575]) +6 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#2575]) +6 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][335] ([fdo#109315]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#2575]) +7 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#2575]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@vc4/vc4_perfmon@create-single-perfmon.html
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#7711]) +6 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#7711]) +9 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#7711]) +8 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#7711]) +9 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [SKIP][342] ([fdo#109271]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
#### Warnings ####
* igt@gem_exec_balancer@full-late-pulse:
- shard-rkl: [ABORT][344] ([i915#9855]) -> [INCOMPLETE][345] ([i915#9856])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_balancer@full-late-pulse.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-snb: [INCOMPLETE][346] ([i915#9847]) -> [INCOMPLETE][347] ([i915#9858])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb6/igt@i915_pm_rc6_residency@rc6-fence@gt0.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#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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[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#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9855]: https://gitlab.freedesktop.org/drm/intel/issues/9855
[i915#9856]: https://gitlab.freedesktop.org/drm/intel/issues/9856
[i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857
[i915#9858]: https://gitlab.freedesktop.org/drm/intel/issues/9858
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7635 -> IGTPW_10392
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
[-- Attachment #2: Type: text/html, Size: 116330 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
` (5 preceding siblings ...)
2023-12-13 6:48 ` ✗ Fi.CI.IGT: failure for " Patchwork
@ 2023-12-13 13:35 ` Patchwork
2023-12-13 14:06 ` ✓ Fi.CI.IGT: success " Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-12-13 13:35 UTC (permalink / raw)
To: sai.gowtham.ch; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89922 bytes --]
== Series Details ==
Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
URL : https://patchwork.freedesktop.org/series/127630/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14007_full -> IGTPW_10392_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10392_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10392_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
Participating hosts (9 -> 7)
------------------------------
Missing (2): shard-snb-0 shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10392_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rps@fence-order:
- shard-snb: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@i915_pm_rps@fence-order.html
* igt@i915_power@sanity:
- shard-mtlp: NOTRUN -> [ABORT][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@i915_power@sanity.html
Known issues
------------
Here are the changes found in IGTPW_10392_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_caching@writes.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#9364])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][26] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [ABORT][27] ([i915#9856])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@fairslice:
- shard-rkl: NOTRUN -> [INCOMPLETE][28] ([i915#9856])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_balancer@fairslice.html
- shard-dg1: NOTRUN -> [ABORT][29] ([i915#9855])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_balancer@full-late-pulse:
- shard-tglu: NOTRUN -> [INCOMPLETE][30] ([i915#9856]) +1 other test incomplete
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_balancer@full-late-pulse.html
* igt@gem_exec_balancer@invalid-balancer:
- shard-dg2: NOTRUN -> [INCOMPLETE][31] ([i915#9856])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_balancer@invalid-balancer.html
- shard-dg1: NOTRUN -> [INCOMPLETE][32] ([i915#9856])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_balancer@invalid-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
- shard-rkl: NOTRUN -> [FAIL][34] ([i915#9606])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][35] ([i915#9606])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_exec_fair@basic-none-share.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][38] ([i915#2842]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#7697])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#7697])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7697])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#7697])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#7697])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +12 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +11 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +12 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [PASS][52] -> [ABORT][53] ([i915#7392])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_exec_whisper@basic-fds-forked-all:
- shard-glk: NOTRUN -> [INCOMPLETE][54] ([i915#9857]) +2 other tests incomplete
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html
- shard-tglu: NOTRUN -> [INCOMPLETE][55] ([i915#6755] / [i915#7392])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@gem_exec_whisper@basic-fds-forked-all.html
* igt@gem_exec_whisper@basic-normal-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][56] ([i915#9857]) +1 other test incomplete
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@gem_exec_whisper@basic-normal-all.html
- shard-mtlp: NOTRUN -> [ABORT][57] ([i915#9857]) +1 other test abort
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_whisper@basic-normal-all.html
* igt@gem_exec_whisper@basic-sync:
- shard-snb: NOTRUN -> [INCOMPLETE][58] ([i915#9857]) +3 other tests incomplete
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb2/igt@gem_exec_whisper@basic-sync.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8289])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pread@self.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][81] ([fdo#109312])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][82] ([i915#5889])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4077]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4958])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][93] ([i915#3318])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@gem_userptr_blits@vma-merge.html
- shard-dg1: NOTRUN -> [FAIL][94] ([i915#3318])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][95] ([i915#3318])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_userptr_blits@vma-merge.html
- shard-glk: NOTRUN -> [FAIL][96] ([i915#3318])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][97] ([i915#3318])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_userptr_blits@vma-merge.html
- shard-dg2: NOTRUN -> [FAIL][98] ([i915#3318])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][99] ([fdo#109289]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html
- shard-rkl: NOTRUN -> [SKIP][100] ([fdo#109289]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gen7_exec_parse@bitmasks.html
- shard-dg1: NOTRUN -> [SKIP][101] ([fdo#109289]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gen7_exec_parse@bitmasks.html
- shard-tglu: NOTRUN -> [SKIP][102] ([fdo#109289]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#2856])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [INCOMPLETE][108] ([i915#9200])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][109] ([i915#9820])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [WARN][110] ([i915#7356])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#8399])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-glk: NOTRUN -> [INCOMPLETE][113] ([i915#9858]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-snb: NOTRUN -> [INCOMPLETE][114] ([i915#9858])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-mtlp: NOTRUN -> [INCOMPLETE][115] ([i915#9858])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-mtlp: NOTRUN -> [ABORT][116] ([i915#9855]) +4 other tests abort
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg2: NOTRUN -> [ABORT][117] ([i915#9855])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-rkl: NOTRUN -> [ABORT][118] ([i915#9855])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][119] ([i915#9858])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-tglu: NOTRUN -> [INCOMPLETE][120] ([i915#9858])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#6621])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#6621])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6621])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#8925])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8925])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3555] / [i915#8925])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4387])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#4387])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4387])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#4387])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#8437])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#7984])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][133] ([fdo#109303])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][134] ([i915#9311])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#4212]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4212]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4212]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#6228])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6228])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#1769])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#1769])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111615] / [i915#5286]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][149] ([fdo#111614]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][150] ([fdo#111614]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111614] / [i915#3638]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3638]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111614]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6187])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111615]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][156] ([fdo#111615]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#4538] / [i915#5190]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][158] ([fdo#110723]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#4538]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][160] ([fdo#111615])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][161] ([fdo#111615])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#5354] / [i915#6095]) +42 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#5354] / [i915#6095]) +26 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#5354]) +81 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-snb: NOTRUN -> [SKIP][165] ([fdo#109271]) +455 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#5354] / [i915#6095]) +59 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#5354]) +35 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#5354] / [i915#6095]) +32 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#7828]) +9 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#7828]) +8 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#7828]) +9 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][172] ([fdo#111827]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_chamelium_color@ctm-0-75.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([fdo#111827]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#111827]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111827]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111827]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#7828]) +8 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#7828]) +8 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555]) +8 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#7116]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#7118])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#9424])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#9424])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#9424])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#6944]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8814])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555]) +8 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3359]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3359]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][192] ([fdo#109279] / [i915#3359])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3359]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109279] / [i915#3359])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][195] ([fdo#109271]) +188 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3359]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3359])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825]) +14 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][199] ([fdo#109274] / [i915#5354]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213] / [i915#5608])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#4103]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109274]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#9809]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#4103])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#4213])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#8588])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#8588])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8588])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#8588])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8588])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555]) +9 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3804])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8812])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8812])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8812])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840] / [i915#9159])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_dsc@dsc-basic.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#1839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#1839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#1839])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#658])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#658])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#658])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][231] ([fdo#109274] / [i915#3637]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3637]) +6 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8381]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][235] ([fdo#109274]) +9 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#8381]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#2672]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8810]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#2672]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][244] ([fdo#109285])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg1: NOTRUN -> [SKIP][245] ([fdo#109285])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_force_connector_basic@force-load-detect.html
- shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109285])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg2: NOTRUN -> [SKIP][247] ([fdo#109285])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#8708]) +13 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][249] -> [SKIP][250] ([fdo#109271]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][251] ([fdo#111825]) +40 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][252] ([fdo#109280]) +25 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#5460])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3458]) +13 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3023]) +18 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#3458]) +14 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][257] ([fdo#110189]) +12 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#1825]) +17 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#8708]) +13 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8708]) +6 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][261] ([fdo#111825] / [i915#1825]) +33 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][267] ([fdo#109289]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][268] ([i915#4573]) +1 other test fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9423]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#9423]) +7 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#5176]) +7 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9423]) +3 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#5235]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#5235]) +7 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#5235]) +7 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#5235]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#5235]) +7 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#5235]) +9 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#9519])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#9519])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][281] ([fdo#109293]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_pm_rpm@pc8-residency.html
- shard-dg2: NOTRUN -> [SKIP][282] ([fdo#109293] / [fdo#109506]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html
- shard-rkl: NOTRUN -> [SKIP][283] ([fdo#109293] / [fdo#109506]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_pm_rpm@pc8-residency.html
- shard-dg1: NOTRUN -> [SKIP][284] ([fdo#109293] / [fdo#109506]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][285] ([fdo#109293] / [fdo#109506]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#4077]) +11 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#6524] / [i915#6805]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#6524]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#6524]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#9683])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#9683])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#9683])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][293] ([fdo#111068] / [i915#9683]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][294] ([fdo#111068] / [i915#9683])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#4348]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#9683]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][297] ([fdo#111068] / [i915#9683]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][298] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#5190]) +6 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#4235] / [i915#5190])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [INCOMPLETE][301] ([i915#8875] / [i915#9569])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#4235])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#3555]) +7 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8808]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#2437] / [i915#9412])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#2437] / [i915#9412])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#2437] / [i915#9412])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][309] ([fdo#109271] / [i915#2437])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#2437] / [i915#9412])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@invalid-oa-format-id:
- shard-dg2: NOTRUN -> [ABORT][311] ([i915#9847]) +1 other test abort
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@perf@invalid-oa-format-id.html
* igt@perf@invalid-oa-metric-set-id:
- shard-glk: NOTRUN -> [ABORT][312] ([i915#9847])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk1/igt@perf@invalid-oa-metric-set-id.html
- shard-dg1: NOTRUN -> [ABORT][313] ([i915#9847]) +1 other test abort
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf@invalid-oa-metric-set-id.html
* igt@perf_pmu:
- shard-tglu: NOTRUN -> [INCOMPLETE][314] ([i915#2295])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@perf_pmu.html
* igt@perf_pmu@busy-accuracy-50@rcs0:
- shard-tglu: NOTRUN -> [INCOMPLETE][315] ([i915#9853]) +2 other tests incomplete
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@perf_pmu@busy-accuracy-50@rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][316] ([i915#4349]) +1 other test fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: NOTRUN -> [ABORT][317] ([i915#9853])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
- shard-dg1: NOTRUN -> [ABORT][318] ([i915#9853])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-hang@rcs0:
- shard-dg2: NOTRUN -> [INCOMPLETE][319] ([i915#9853]) +3 other tests incomplete
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@perf_pmu@busy-hang@rcs0.html
- shard-rkl: NOTRUN -> [ABORT][320] ([i915#9853])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@perf_pmu@busy-hang@rcs0.html
* igt@perf_pmu@frequency:
- shard-glk: NOTRUN -> [INCOMPLETE][321] ([i915#9853]) +3 other tests incomplete
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@perf_pmu@frequency.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: NOTRUN -> [ABORT][322] ([i915#9847]) +5 other tests abort
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][323] ([i915#9853]) +5 other tests incomplete
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [INCOMPLETE][324] ([i915#9853]) +3 other tests incomplete
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][325] ([i915#9853]) +4 other tests incomplete
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@render-node-busy-idle@rcs0:
- shard-rkl: NOTRUN -> [ABORT][326] ([i915#9847]) +1 other test abort
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@perf_pmu@render-node-busy-idle@rcs0.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#3708])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#3291] / [i915#3708])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][329] ([fdo#109295] / [i915#3291] / [i915#3708])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#3708])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@prime_vgem@basic-read.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#2575]) +7 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][332] ([fdo#109315] / [i915#2575]) +6 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#2575]) +6 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][334] ([fdo#109315]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#2575]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#2575]) +6 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@vc4/vc4_perfmon@create-single-perfmon.html
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#7711]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#7711]) +9 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#7711]) +8 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#7711]) +9 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [SKIP][341] ([fdo#109271]) -> [PASS][342] +1 other test pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
#### Warnings ####
* igt@gem_exec_balancer@full-late-pulse:
- shard-rkl: [ABORT][343] ([i915#9855]) -> [INCOMPLETE][344] ([i915#9856])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_balancer@full-late-pulse.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-snb: [INCOMPLETE][345] ([i915#9847]) -> [INCOMPLETE][346] ([i915#9858])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb6/igt@i915_pm_rc6_residency@rc6-fence@gt0.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#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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[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#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9855]: https://gitlab.freedesktop.org/drm/intel/issues/9855
[i915#9856]: https://gitlab.freedesktop.org/drm/intel/issues/9856
[i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857
[i915#9858]: https://gitlab.freedesktop.org/drm/intel/issues/9858
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7635 -> IGTPW_10392
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
[-- Attachment #2: Type: text/html, Size: 116167 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.IGT: success for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
` (6 preceding siblings ...)
2023-12-13 13:35 ` Patchwork
@ 2023-12-13 14:06 ` Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-12-13 14:06 UTC (permalink / raw)
To: sai.gowtham.ch; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89235 bytes --]
== Series Details ==
Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
URL : https://patchwork.freedesktop.org/series/127630/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14007_full -> IGTPW_10392_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
Participating hosts (9 -> 7)
------------------------------
Missing (2): shard-snb-0 shard-glk-0
Known issues
------------
Here are the changes found in IGTPW_10392_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_10392/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#6230])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#4873])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_caching@writes.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][10] -> [INCOMPLETE][11] ([i915#7297])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#9364])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][24] ([i915#7975] / [i915#8213])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [ABORT][25] ([i915#9856])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@fairslice:
- shard-rkl: NOTRUN -> [INCOMPLETE][26] ([i915#9856])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_balancer@fairslice.html
- shard-dg1: NOTRUN -> [ABORT][27] ([i915#9855])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_balancer@full-late-pulse:
- shard-tglu: NOTRUN -> [INCOMPLETE][28] ([i915#9856]) +1 other test incomplete
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_balancer@full-late-pulse.html
* igt@gem_exec_balancer@invalid-balancer:
- shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#9856])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_balancer@invalid-balancer.html
- shard-dg1: NOTRUN -> [INCOMPLETE][30] ([i915#9856])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_balancer@invalid-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][31] ([i915#9606])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
- shard-rkl: NOTRUN -> [FAIL][32] ([i915#9606])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_exec_fair@basic-none-share.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][36] ([i915#2842]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][39] ([i915#2842])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#7697])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#7697])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#7697])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#7697])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#7697])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +12 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +11 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +8 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [PASS][50] -> [ABORT][51] ([i915#7392])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_exec_whisper@basic-fds-forked-all:
- shard-glk: NOTRUN -> [INCOMPLETE][52] ([i915#9857]) +2 other tests incomplete
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html
- shard-tglu: NOTRUN -> [INCOMPLETE][53] ([i915#6755] / [i915#7392])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@gem_exec_whisper@basic-fds-forked-all.html
* igt@gem_exec_whisper@basic-normal-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][54] ([i915#9857]) +1 other test incomplete
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@gem_exec_whisper@basic-normal-all.html
- shard-mtlp: NOTRUN -> [ABORT][55] ([i915#9857]) +1 other test abort
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_exec_whisper@basic-normal-all.html
* igt@gem_exec_whisper@basic-sync:
- shard-snb: NOTRUN -> [INCOMPLETE][56] ([i915#9857]) +3 other tests incomplete
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb2/igt@gem_exec_whisper@basic-sync.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8289])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +8 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pread@self.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][79] ([fdo#109312])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][80] ([i915#5889])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4077]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4958])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][91] ([i915#3318])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@gem_userptr_blits@vma-merge.html
- shard-dg1: NOTRUN -> [FAIL][92] ([i915#3318])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][93] ([i915#3318])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@gem_userptr_blits@vma-merge.html
- shard-glk: NOTRUN -> [FAIL][94] ([i915#3318])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][95] ([i915#3318])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@gem_userptr_blits@vma-merge.html
- shard-dg2: NOTRUN -> [FAIL][96] ([i915#3318])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109289]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html
- shard-rkl: NOTRUN -> [SKIP][98] ([fdo#109289]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@gen7_exec_parse@bitmasks.html
- shard-dg1: NOTRUN -> [SKIP][99] ([fdo#109289]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@gen7_exec_parse@bitmasks.html
- shard-tglu: NOTRUN -> [SKIP][100] ([fdo#109289]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@gen9_exec_parse@bb-start-far.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [INCOMPLETE][106] ([i915#9200])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][107] ([i915#9820])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [WARN][108] ([i915#7356])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#8399])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#8399])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#9858]) +1 other test incomplete
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-snb: NOTRUN -> [INCOMPLETE][112] ([i915#9858])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-mtlp: NOTRUN -> [INCOMPLETE][113] ([i915#9858])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-mtlp: NOTRUN -> [ABORT][114] ([i915#9855]) +4 other tests abort
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg2: NOTRUN -> [ABORT][115] ([i915#9855])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-rkl: NOTRUN -> [ABORT][116] ([i915#9855])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][117] ([i915#9858])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- shard-tglu: NOTRUN -> [INCOMPLETE][118] ([i915#9858])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@fence-order:
- shard-snb: NOTRUN -> [INCOMPLETE][119] ([i915#9847])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@i915_pm_rps@fence-order.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#6621])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6621])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6621])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#8925])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8925])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3555] / [i915#8925])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4387])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#4387])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4387])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#4387])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8437])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7984])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][132] ([fdo#109303])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][133] ([i915#9311])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb4/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4212]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4212]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4212]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#6228])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6228])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][141] ([fdo#109271] / [i915#1769])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][144] ([fdo#109271] / [i915#1769])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#5286]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5286]) +6 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][147] ([fdo#111615] / [i915#5286]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111614]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111614]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111614] / [i915#3638]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111614]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6187])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111615]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111615]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][157] ([fdo#110723]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][159] ([fdo#111615])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][160] ([fdo#111615])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +42 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5354] / [i915#6095]) +26 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#5354]) +81 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-snb: NOTRUN -> [SKIP][164] ([fdo#109271]) +455 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#5354] / [i915#6095]) +59 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#5354]) +35 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#5354] / [i915#6095]) +32 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#7828]) +9 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#7828]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#7828]) +9 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][171] ([fdo#111827]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_chamelium_color@ctm-0-75.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([fdo#111827]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][173] ([fdo#111827]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111827]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg1: NOTRUN -> [SKIP][175] ([fdo#111827]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#7828]) +8 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#7828]) +8 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555]) +8 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#7116]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#7118])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#9424])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#9424])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9424])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#6944]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3359]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3359]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][191] ([fdo#109279] / [i915#3359])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3359]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][193] ([fdo#109279] / [i915#3359])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][194] ([fdo#109271]) +188 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#3359]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3359])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][197] ([fdo#111825]) +14 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][198] ([fdo#109274] / [i915#5354]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213] / [i915#5608])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#4103]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][202] ([fdo#109274]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#4103])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#4213])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#8588])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#8588])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#8588])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#8588])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8588])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555]) +9 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-19/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#3804])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#8812])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8812])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#8812])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840] / [i915#9159])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_dsc@dsc-basic.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#1839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#1839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#1839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#1839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#658])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#658])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#658])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][230] ([fdo#109274] / [i915#3637]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#8381]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8381]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][234] ([fdo#109274]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8381]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#2672]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8810]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][243] ([fdo#109285])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg1: NOTRUN -> [SKIP][244] ([fdo#109285])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@kms_force_connector_basic@force-load-detect.html
- shard-tglu: NOTRUN -> [SKIP][245] ([fdo#109285])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-2/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg2: NOTRUN -> [SKIP][246] ([fdo#109285])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#8708]) +13 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][248] -> [SKIP][249] ([fdo#109271]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][250] ([fdo#111825]) +40 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][251] ([fdo#109280]) +25 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#5460])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +13 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#3023]) +18 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#3458]) +14 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][256] ([fdo#110189]) +12 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#1825]) +17 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#8708]) +13 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8708]) +6 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][260] ([fdo#111825] / [i915#1825]) +33 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][266] ([fdo#109289]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][267] ([i915#4573]) +1 other test fail
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#9423]) +7 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#9423]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#5176]) +7 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#9423]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#5235]) +3 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#5235]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#5235]) +7 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#5235]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#5235]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#5235]) +9 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#9519])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#9519])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][280] ([fdo#109293]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@kms_pm_rpm@pc8-residency.html
- shard-dg2: NOTRUN -> [SKIP][281] ([fdo#109293] / [fdo#109506]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html
- shard-rkl: NOTRUN -> [SKIP][282] ([fdo#109293] / [fdo#109506]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-1/igt@kms_pm_rpm@pc8-residency.html
- shard-dg1: NOTRUN -> [SKIP][283] ([fdo#109293] / [fdo#109506]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][284] ([fdo#109293] / [fdo#109506]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#4077]) +11 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#6524] / [i915#6805]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#6524]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#6524]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#9683])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#9683])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#9683])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][292] ([fdo#111068] / [i915#9683]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-17/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][293] ([fdo#111068] / [i915#9683])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-9/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#4348]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#9683]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][296] ([fdo#111068] / [i915#9683]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][297] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#5190]) +6 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#4235] / [i915#5190])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [INCOMPLETE][300] ([i915#8875] / [i915#9569])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#4235])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#3555]) +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8808]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#2437] / [i915#9412])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#2437] / [i915#9412])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2437] / [i915#9412])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][308] ([fdo#109271] / [i915#2437])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#2437] / [i915#9412])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@invalid-oa-format-id:
- shard-dg2: NOTRUN -> [ABORT][310] ([i915#9847]) +1 other test abort
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@perf@invalid-oa-format-id.html
* igt@perf@invalid-oa-metric-set-id:
- shard-glk: NOTRUN -> [ABORT][311] ([i915#9847])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk1/igt@perf@invalid-oa-metric-set-id.html
- shard-dg1: NOTRUN -> [ABORT][312] ([i915#9847]) +1 other test abort
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf@invalid-oa-metric-set-id.html
* igt@perf_pmu:
- shard-tglu: NOTRUN -> [INCOMPLETE][313] ([i915#2295])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-3/igt@perf_pmu.html
* igt@perf_pmu@busy-accuracy-50@rcs0:
- shard-tglu: NOTRUN -> [INCOMPLETE][314] ([i915#9853]) +2 other tests incomplete
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@perf_pmu@busy-accuracy-50@rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][315] ([i915#4349]) +1 other test fail
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: NOTRUN -> [ABORT][316] ([i915#9853])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
- shard-dg1: NOTRUN -> [ABORT][317] ([i915#9853])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-hang@rcs0:
- shard-dg2: NOTRUN -> [INCOMPLETE][318] ([i915#9853]) +3 other tests incomplete
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@perf_pmu@busy-hang@rcs0.html
- shard-rkl: NOTRUN -> [ABORT][319] ([i915#9853])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@perf_pmu@busy-hang@rcs0.html
* igt@perf_pmu@frequency:
- shard-glk: NOTRUN -> [INCOMPLETE][320] ([i915#9853]) +3 other tests incomplete
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk2/igt@perf_pmu@frequency.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: NOTRUN -> [ABORT][321] ([i915#9847]) +6 other tests abort
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][322] ([i915#9853]) +5 other tests incomplete
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [INCOMPLETE][323] ([i915#9853]) +3 other tests incomplete
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-dg1: NOTRUN -> [INCOMPLETE][324] ([i915#9853]) +4 other tests incomplete
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@render-node-busy-idle@rcs0:
- shard-rkl: NOTRUN -> [ABORT][325] ([i915#9847]) +1 other test abort
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@perf_pmu@render-node-busy-idle@rcs0.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#3708])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#3291] / [i915#3708])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][328] ([fdo#109295] / [i915#3291] / [i915#3708])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-5/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#3708])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-15/igt@prime_vgem@basic-read.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#2575]) +7 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][331] ([fdo#109315] / [i915#2575]) +6 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#2575]) +6 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][333] ([fdo#109315]) +7 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#2575]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#2575]) +6 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@vc4/vc4_perfmon@create-single-perfmon.html
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#7711]) +6 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-2/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#7711]) +9 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#7711]) +8 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#7711]) +9 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [SKIP][340] ([fdo#109271]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
#### Warnings ####
* igt@gem_exec_balancer@full-late-pulse:
- shard-rkl: [ABORT][342] ([i915#9855]) -> [INCOMPLETE][343] ([i915#9856])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@gem_exec_balancer@full-late-pulse.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-snb: [INCOMPLETE][344] ([i915#9847]) -> [INCOMPLETE][345] ([i915#9858])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-snb2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb6/igt@i915_pm_rc6_residency@rc6-fence@gt0.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#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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[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#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9855]: https://gitlab.freedesktop.org/drm/intel/issues/9855
[i915#9856]: https://gitlab.freedesktop.org/drm/intel/issues/9856
[i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857
[i915#9858]: https://gitlab.freedesktop.org/drm/intel/issues/9858
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7635 -> IGTPW_10392
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
[-- Attachment #2: Type: text/html, Size: 115500 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for intel/xe_exec_store.c: Fix the execution of basic-all test.
2023-12-12 8:29 ` Kamil Konieczny
@ 2023-12-13 14:41 ` Illipilli, TejasreeX
0 siblings, 0 replies; 12+ messages in thread
From: Illipilli, TejasreeX @ 2023-12-13 14:41 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: LGCI Bug Filing, I915-ci-infra@lists.freedesktop.org
Hi,
https://patchwork.freedesktop.org/series/127630/ - Re-reported.
Thanks,
Tejasree
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Tuesday, December 12, 2023 2:00 PM
To: igt-dev@lists.freedesktop.org
Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for intel/xe_exec_store.c: Fix the execution of basic-all test.
Hi,
below is unrelated to Xe test.
Regards,
Kamil
On 2023-12-11 at 20:55:17 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: intel/xe_exec_store.c: Fix the execution of basic-all test.
> URL : https://patchwork.freedesktop.org/series/127630/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_14007_full -> IGTPW_10392_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10392_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10392_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
>
> Participating hosts (9 -> 7)
> ------------------------------
>
> Missing (2): shard-snb-0 shard-glk-0
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10392_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_exec_balancer@fairslice:
> - shard-dg1: NOTRUN -> [ABORT][1] +2 other tests abort
> [1]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-13/igt@
> gem_exec_balancer@fairslice.html
>
> * igt@gem_exec_balancer@full-late-pulse:
> - shard-tglu: NOTRUN -> [INCOMPLETE][2] +7 other tests incomplete
> [2]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-tglu-4/igt@
> gem_exec_balancer@full-late-pulse.html
>
> * igt@gem_exec_whisper@basic-fds-forked-all:
> - shard-glk: NOTRUN -> [INCOMPLETE][3] +8 other tests incomplete
> [3]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk9/igt@ge
> m_exec_whisper@basic-fds-forked-all.html
>
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
> - shard-mtlp: NOTRUN -> [INCOMPLETE][4]
> [4]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@
> i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
>
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
> - shard-mtlp: NOTRUN -> [ABORT][5] +12 other tests abort
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
> - shard-dg2: NOTRUN -> [ABORT][6] +1 other test abort
> [6]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-3/igt@i
> 915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
>
> * igt@perf@invalid-oa-metric-set-id:
> - shard-glk: NOTRUN -> [ABORT][7]
> [7]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-glk1/igt@pe
> rf@invalid-oa-metric-set-id.html
>
> * igt@perf_pmu@busy-hang@rcs0:
> - shard-dg2: NOTRUN -> [INCOMPLETE][8] +4 other tests incomplete
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg2-10/igt@perf_pmu@busy-hang@rcs0.html
> - shard-rkl: NOTRUN -> [ABORT][9] +1 other test abort
> [9]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-3/igt@p
> erf_pmu@busy-hang@rcs0.html
>
> * igt@perf_pmu@most-busy-check-all@rcs0:
> - shard-snb: NOTRUN -> [INCOMPLETE][10] +11 other tests incomplete
> [10]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-snb5/igt@pe
> rf_pmu@most-busy-check-all@rcs0.html
>
> * igt@perf_pmu@most-busy-idle-check-all@rcs0:
> - shard-rkl: NOTRUN -> [INCOMPLETE][11] +4 other tests incomplete
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
> - shard-dg1: NOTRUN -> [INCOMPLETE][12] +6 other tests incomplete
> [12]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-dg1-16/igt@
> perf_pmu@most-busy-idle-check-all@rcs0.html
>
>
> #### Warnings ####
>
> * igt@gem_exec_balancer@full-late-pulse:
> - shard-rkl: [ABORT][13] -> [INCOMPLETE][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14007/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html
> [14]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/shard-rkl-7/igt@g
> em_exec_balancer@full-late-pulse.html
>
>
> New tests
> ---------
>
> New tests have been introduced between CI_DRM_14007_full and IGTPW_10392_full:
>
> ### New IGT tests (1) ###
>
> * igt@i915_power:
> - Statuses : 2 incomplete(s)
> - Exec time: [0.0] s
>
[...cut...]
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7635 -> IGTPW_10392
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_14007: e888b3a5196ef64c917c30f387276bdcedc9d23b @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10392: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
> IGT_7635: 0b796be8ce05cb2070ce5136d248f438c962d11e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10392/index.html
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-12-13 14:41 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-11 13:07 [PATCH i-g-t] intel/xe_exec_store.c: Fix the execution of basic-all test sai.gowtham.ch
2023-12-11 20:04 ` ✓ Fi.CI.BAT: success for " Patchwork
2023-12-11 20:55 ` ✗ Fi.CI.IGT: failure " Patchwork
2023-12-12 8:29 ` Kamil Konieczny
2023-12-13 14:41 ` Illipilli, TejasreeX
2023-12-11 21:38 ` ✓ CI.xeBAT: success " Patchwork
2023-12-12 7:09 ` [PATCH i-g-t] " Kumar, Janga Rahul
2023-12-12 8:22 ` Kamil Konieczny
2023-12-13 6:48 ` ✗ Fi.CI.IGT: failure for " Patchwork
2023-12-13 13:35 ` Patchwork
2023-12-13 14:06 ` ✓ Fi.CI.IGT: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-12-08 7:17 [PATCH i-g-t] " sai.gowtham.ch
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox