* [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests
@ 2023-12-11 10:12 Matthew Auld
2023-12-11 12:30 ` Kamil Konieczny
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Matthew Auld @ 2023-12-11 10:12 UTC (permalink / raw)
To: igt-dev; +Cc: Himanshu Girotra
Due to of the all the combinations here, we generate hundreds of dynamic
testcases. This does allow running any individual testcase quite easily,
but the sheer number of tests is a bit unwieldy for CI to handle. Trim
this back to the following tests:
pat-index-{xelp, xehpc, xelpg, xe2}@{dw, blt, render}
v2 (Kamil): Tweak the pat-index-* test description in the commit
message.
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Himanshu Girotra <himanshu.girotra@intel.com>
---
tests/intel/xe_pat.c | 128 +++++++++++++++++++++----------------------
1 file changed, 64 insertions(+), 64 deletions(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 8189390a8..7273242b0 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -369,13 +369,15 @@ static void pat_index_render(struct xe_pat_param *p)
int bpp = 32;
int i;
- bops = buf_ops_create(fd);
-
render_copy = igt_get_render_copyfunc(devid);
igt_require(render_copy);
- igt_require(!p->r2_compressed); /* XXX */
igt_require(xe_has_engine_class(fd, DRM_XE_ENGINE_CLASS_RENDER));
+ if (p->r2_compressed) /* XXX */
+ return;
+
+ bops = buf_ops_create(fd);
+
ibb = intel_bb_create_full(fd, 0, 0, NULL, xe_get_default_alignment(fd),
0, 0, p->size->alignment,
INTEL_ALLOCATOR_SIMPLE,
@@ -456,8 +458,8 @@ static void pat_index_dw(struct xe_pat_param *p)
int bpp = 32, i, n_engines;
uint32_t ctx, vm;
- igt_require(!p->r1_compressed);
- igt_require(!p->r2_compressed);
+ if (p->r1_compressed || p->r2_compressed)
+ return;
bops = buf_ops_create(fd);
@@ -901,84 +903,82 @@ static void subtest_pat_index_modes_with_regions(int fd,
copy_mode = copy_modes[igt_collection_get_value(copies, 0)];
- for_each_variation_r(regions, 2, regions_set) {
- struct igt_collection *pat_modes;
- uint32_t r1, r2;
- char *reg_str;
+ igt_dynamic_f("%s", copy_mode.name) {
+ for_each_variation_r(regions, 2, regions_set) {
+ struct igt_collection *pat_modes;
+ uint32_t r1, r2;
+ char *reg_str;
- r1 = igt_collection_get_value(regions, 0);
- r2 = igt_collection_get_value(regions, 1);
+ r1 = igt_collection_get_value(regions, 0);
+ r2 = igt_collection_get_value(regions, 1);
- reg_str = xe_memregion_dynamic_subtest_name(fd, regions);
+ reg_str = xe_memregion_dynamic_subtest_name(fd, regions);
- for_each_variation_r(pat_modes, 2, pat_index_set) {
- struct igt_collection *sizes;
- struct pat_index_entry r1_entry, r2_entry;
- int r1_idx, r2_idx;
+ for_each_variation_r(pat_modes, 2, pat_index_set) {
+ struct igt_collection *sizes;
+ struct pat_index_entry r1_entry, r2_entry;
+ int r1_idx, r2_idx;
- r1_idx = igt_collection_get_value(pat_modes, 0);
- r2_idx = igt_collection_get_value(pat_modes, 1);
+ r1_idx = igt_collection_get_value(pat_modes, 0);
+ r2_idx = igt_collection_get_value(pat_modes, 1);
- r1_entry = modes_arr[r1_idx];
- r2_entry = modes_arr[r2_idx];
+ r1_entry = modes_arr[r1_idx];
+ r2_entry = modes_arr[r2_idx];
- if (r1_entry.get_pat_index) {
- p.r1_pat_index = r1_entry.get_pat_index(fd, &p.r1_compressed);
- } else {
- p.r1_pat_index = r1_entry.pat_index;
- p.r1_compressed = r1_entry.compressed;
- }
+ if (r1_entry.get_pat_index) {
+ p.r1_pat_index = r1_entry.get_pat_index(fd, &p.r1_compressed);
+ } else {
+ p.r1_pat_index = r1_entry.pat_index;
+ p.r1_compressed = r1_entry.compressed;
+ }
- if (r2_entry.get_pat_index)
- p.r2_pat_index = r2_entry.get_pat_index(fd, &p.r2_compressed);
- else {
- p.r2_pat_index = r2_entry.pat_index;
- p.r2_compressed = r2_entry.compressed;
- }
+ if (r2_entry.get_pat_index)
+ p.r2_pat_index = r2_entry.get_pat_index(fd, &p.r2_compressed);
+ else {
+ p.r2_pat_index = r2_entry.pat_index;
+ p.r2_compressed = r2_entry.compressed;
+ }
- p.r1 = r1;
- p.r2 = r2;
+ p.r1 = r1;
+ p.r2 = r2;
- for_each_variation_r(sizes, 1, sizes_set) {
- int size_mode_idx = igt_collection_get_value(sizes, 0);
- int bpp = 32;
- int size;
+ for_each_variation_r(sizes, 1, sizes_set) {
+ int size_mode_idx = igt_collection_get_value(sizes, 0);
+ int bpp = 32;
+ int size;
- p.size = &size_modes[size_mode_idx];
+ p.size = &size_modes[size_mode_idx];
- size = p.size->width * p.size->height * bpp / 8;
- p.r1_bo = create_object(fd, p.r1, size, r1_entry.coh_mode,
- r1_entry.force_cpu_wc);
- p.r1_map = xe_bo_map(fd, p.r1_bo, size);
+ size = p.size->width * p.size->height * bpp / 8;
+ p.r1_bo = create_object(fd, p.r1, size, r1_entry.coh_mode,
+ r1_entry.force_cpu_wc);
+ p.r1_map = xe_bo_map(fd, p.r1_bo, size);
- p.r2_bo = create_object(fd, p.r2, size, r2_entry.coh_mode,
- r2_entry.force_cpu_wc);
- p.r2_map = xe_bo_map(fd, p.r2_bo, size);
+ p.r2_bo = create_object(fd, p.r2, size, r2_entry.coh_mode,
+ r2_entry.force_cpu_wc);
+ p.r2_map = xe_bo_map(fd, p.r2_bo, size);
- igt_debug("[r1]: r: %u, idx: %u, coh: %u, wc: %d, comp: %d\n",
- p.r1, p.r1_pat_index, r1_entry.coh_mode,
- r1_entry.force_cpu_wc, p.r1_compressed);
- igt_debug("[r2]: r: %u, idx: %u, coh: %u, wc: %d, comp: %d, w: %u, h: %u, a: %u\n",
- p.r2, p.r2_pat_index, r2_entry.coh_mode,
- r1_entry.force_cpu_wc, p.r2_compressed,
- p.size->width, p.size->height,
- p.size->alignment);
+ igt_debug("[r1]: r: %u, idx: %u (%s), coh: %u, wc: %d, comp: %d\n",
+ p.r1, p.r1_pat_index, r1_entry.name, r1_entry.coh_mode,
+ r1_entry.force_cpu_wc, p.r1_compressed);
+ igt_debug("[r2]: r: %u, idx: %u (%s), coh: %u, wc: %d, comp: %d, w: %u, h: %u, a: %u\n",
+ p.r2, p.r2_pat_index, r2_entry.name, r2_entry.coh_mode,
+ r1_entry.force_cpu_wc, p.r2_compressed,
+ p.size->width, p.size->height,
+ p.size->alignment);
- igt_dynamic_f("%s-%s-%s-%s-%s",
- copy_mode.name,
- reg_str, r1_entry.name,
- r2_entry.name, p.size->name)
copy_mode.fn(&p);
- munmap(p.r1_map, size);
- munmap(p.r2_map, size);
+ munmap(p.r1_map, size);
+ munmap(p.r2_map, size);
- gem_close(fd, p.r1_bo);
- gem_close(fd, p.r2_bo);
+ gem_close(fd, p.r1_bo);
+ gem_close(fd, p.r2_bo);
+ }
}
+
+ free(reg_str);
}
-
- free(reg_str);
}
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld @ 2023-12-11 12:30 ` Kamil Konieczny 2023-12-11 15:01 ` ✓ Fi.CI.BAT: success for tests/intel/xe_pat: limit number of dynamic tests (rev2) Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-12-11 12:30 UTC (permalink / raw) To: igt-dev; +Cc: Himanshu Girotra, Matthew Auld Hi Matthew, On 2023-12-11 at 10:12:51 +0000, Matthew Auld wrote: > Due to of the all the combinations here, we generate hundreds of dynamic > testcases. This does allow running any individual testcase quite easily, > but the sheer number of tests is a bit unwieldy for CI to handle. Trim > this back to the following tests: > > pat-index-{xelp, xehpc, xelpg, xe2}@{dw, blt, render} > > v2 (Kamil): Tweak the pat-index-* test description in the commit > message. > > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Himanshu Girotra <himanshu.girotra@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/xe_pat.c | 128 +++++++++++++++++++++---------------------- > 1 file changed, 64 insertions(+), 64 deletions(-) > > diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c > index 8189390a8..7273242b0 100644 > --- a/tests/intel/xe_pat.c > +++ b/tests/intel/xe_pat.c > @@ -369,13 +369,15 @@ static void pat_index_render(struct xe_pat_param *p) > int bpp = 32; > int i; > > - bops = buf_ops_create(fd); > - > render_copy = igt_get_render_copyfunc(devid); > igt_require(render_copy); > - igt_require(!p->r2_compressed); /* XXX */ > igt_require(xe_has_engine_class(fd, DRM_XE_ENGINE_CLASS_RENDER)); > > + if (p->r2_compressed) /* XXX */ > + return; > + > + bops = buf_ops_create(fd); > + > ibb = intel_bb_create_full(fd, 0, 0, NULL, xe_get_default_alignment(fd), > 0, 0, p->size->alignment, > INTEL_ALLOCATOR_SIMPLE, > @@ -456,8 +458,8 @@ static void pat_index_dw(struct xe_pat_param *p) > int bpp = 32, i, n_engines; > uint32_t ctx, vm; > > - igt_require(!p->r1_compressed); > - igt_require(!p->r2_compressed); > + if (p->r1_compressed || p->r2_compressed) > + return; > > bops = buf_ops_create(fd); > > @@ -901,84 +903,82 @@ static void subtest_pat_index_modes_with_regions(int fd, > > copy_mode = copy_modes[igt_collection_get_value(copies, 0)]; > > - for_each_variation_r(regions, 2, regions_set) { > - struct igt_collection *pat_modes; > - uint32_t r1, r2; > - char *reg_str; > + igt_dynamic_f("%s", copy_mode.name) { > + for_each_variation_r(regions, 2, regions_set) { > + struct igt_collection *pat_modes; > + uint32_t r1, r2; > + char *reg_str; > > - r1 = igt_collection_get_value(regions, 0); > - r2 = igt_collection_get_value(regions, 1); > + r1 = igt_collection_get_value(regions, 0); > + r2 = igt_collection_get_value(regions, 1); > > - reg_str = xe_memregion_dynamic_subtest_name(fd, regions); > + reg_str = xe_memregion_dynamic_subtest_name(fd, regions); > > - for_each_variation_r(pat_modes, 2, pat_index_set) { > - struct igt_collection *sizes; > - struct pat_index_entry r1_entry, r2_entry; > - int r1_idx, r2_idx; > + for_each_variation_r(pat_modes, 2, pat_index_set) { > + struct igt_collection *sizes; > + struct pat_index_entry r1_entry, r2_entry; > + int r1_idx, r2_idx; > > - r1_idx = igt_collection_get_value(pat_modes, 0); > - r2_idx = igt_collection_get_value(pat_modes, 1); > + r1_idx = igt_collection_get_value(pat_modes, 0); > + r2_idx = igt_collection_get_value(pat_modes, 1); > > - r1_entry = modes_arr[r1_idx]; > - r2_entry = modes_arr[r2_idx]; > + r1_entry = modes_arr[r1_idx]; > + r2_entry = modes_arr[r2_idx]; > > - if (r1_entry.get_pat_index) { > - p.r1_pat_index = r1_entry.get_pat_index(fd, &p.r1_compressed); > - } else { > - p.r1_pat_index = r1_entry.pat_index; > - p.r1_compressed = r1_entry.compressed; > - } > + if (r1_entry.get_pat_index) { > + p.r1_pat_index = r1_entry.get_pat_index(fd, &p.r1_compressed); > + } else { > + p.r1_pat_index = r1_entry.pat_index; > + p.r1_compressed = r1_entry.compressed; > + } > > - if (r2_entry.get_pat_index) > - p.r2_pat_index = r2_entry.get_pat_index(fd, &p.r2_compressed); > - else { > - p.r2_pat_index = r2_entry.pat_index; > - p.r2_compressed = r2_entry.compressed; > - } > + if (r2_entry.get_pat_index) > + p.r2_pat_index = r2_entry.get_pat_index(fd, &p.r2_compressed); > + else { > + p.r2_pat_index = r2_entry.pat_index; > + p.r2_compressed = r2_entry.compressed; > + } > > - p.r1 = r1; > - p.r2 = r2; > + p.r1 = r1; > + p.r2 = r2; > > - for_each_variation_r(sizes, 1, sizes_set) { > - int size_mode_idx = igt_collection_get_value(sizes, 0); > - int bpp = 32; > - int size; > + for_each_variation_r(sizes, 1, sizes_set) { > + int size_mode_idx = igt_collection_get_value(sizes, 0); > + int bpp = 32; > + int size; > > - p.size = &size_modes[size_mode_idx]; > + p.size = &size_modes[size_mode_idx]; > > - size = p.size->width * p.size->height * bpp / 8; > - p.r1_bo = create_object(fd, p.r1, size, r1_entry.coh_mode, > - r1_entry.force_cpu_wc); > - p.r1_map = xe_bo_map(fd, p.r1_bo, size); > + size = p.size->width * p.size->height * bpp / 8; > + p.r1_bo = create_object(fd, p.r1, size, r1_entry.coh_mode, > + r1_entry.force_cpu_wc); > + p.r1_map = xe_bo_map(fd, p.r1_bo, size); > > - p.r2_bo = create_object(fd, p.r2, size, r2_entry.coh_mode, > - r2_entry.force_cpu_wc); > - p.r2_map = xe_bo_map(fd, p.r2_bo, size); > + p.r2_bo = create_object(fd, p.r2, size, r2_entry.coh_mode, > + r2_entry.force_cpu_wc); > + p.r2_map = xe_bo_map(fd, p.r2_bo, size); > > - igt_debug("[r1]: r: %u, idx: %u, coh: %u, wc: %d, comp: %d\n", > - p.r1, p.r1_pat_index, r1_entry.coh_mode, > - r1_entry.force_cpu_wc, p.r1_compressed); > - igt_debug("[r2]: r: %u, idx: %u, coh: %u, wc: %d, comp: %d, w: %u, h: %u, a: %u\n", > - p.r2, p.r2_pat_index, r2_entry.coh_mode, > - r1_entry.force_cpu_wc, p.r2_compressed, > - p.size->width, p.size->height, > - p.size->alignment); > + igt_debug("[r1]: r: %u, idx: %u (%s), coh: %u, wc: %d, comp: %d\n", > + p.r1, p.r1_pat_index, r1_entry.name, r1_entry.coh_mode, > + r1_entry.force_cpu_wc, p.r1_compressed); > + igt_debug("[r2]: r: %u, idx: %u (%s), coh: %u, wc: %d, comp: %d, w: %u, h: %u, a: %u\n", > + p.r2, p.r2_pat_index, r2_entry.name, r2_entry.coh_mode, > + r1_entry.force_cpu_wc, p.r2_compressed, > + p.size->width, p.size->height, > + p.size->alignment); > > - igt_dynamic_f("%s-%s-%s-%s-%s", > - copy_mode.name, > - reg_str, r1_entry.name, > - r2_entry.name, p.size->name) > copy_mode.fn(&p); > > - munmap(p.r1_map, size); > - munmap(p.r2_map, size); > + munmap(p.r1_map, size); > + munmap(p.r2_map, size); > > - gem_close(fd, p.r1_bo); > - gem_close(fd, p.r2_bo); > + gem_close(fd, p.r1_bo); > + gem_close(fd, p.r2_bo); > + } > } > + > + free(reg_str); > } > - > - free(reg_str); > } > } > } > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_pat: limit number of dynamic tests (rev2) 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld 2023-12-11 12:30 ` Kamil Konieczny @ 2023-12-11 15:01 ` Patchwork 2023-12-11 15:46 ` ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-12-11 15:01 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6340 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests (rev2) URL : https://patchwork.freedesktop.org/series/127429/ State : success == Summary == CI Bug Log - changes from CI_DRM_14006 -> IGTPW_10387 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html Participating hosts (32 -> 32) ------------------------------ Additional (1): bat-atsm-1 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10387 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#4083]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#4077]) +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4079]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#6621]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s3-without-i915: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#6645]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#6077]) +36 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#5608] / [i915#6077]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#5608] / [i915#6078]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#6078]) +15 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6093]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#1836]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#7357]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6094]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-atsm-1: NOTRUN -> [SKIP][14] ([fdo#109295] / [i915#6078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-atsm-1: NOTRUN -> [SKIP][15] ([fdo#109295] / [i915#4077]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][16] ([fdo#109295]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-atsm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-1: - bat-adlp-9: [FAIL][17] -> [PASS][18] +3 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/bat-adlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/bat-adlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [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#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7632 -> IGTPW_10387 CI-20190529: 20190529 CI_DRM_14006: e3fd8d148b98f502ba4af1a335bdeebf444e0f23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10387: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html IGT_7632: 3fff86827c4728708072b9accbc990fa1084c95d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html [-- Attachment #2: Type: text/html, Size: 7843 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_pat: limit number of dynamic tests (rev2) 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld 2023-12-11 12:30 ` Kamil Konieczny 2023-12-11 15:01 ` ✓ Fi.CI.BAT: success for tests/intel/xe_pat: limit number of dynamic tests (rev2) Patchwork @ 2023-12-11 15:46 ` Patchwork 2023-12-11 16:41 ` ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-12-11 15:46 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3745 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests (rev2) URL : https://patchwork.freedesktop.org/series/127429/ State : success == Summary == CI Bug Log - changes from XEIGT_7632_BAT -> XEIGTPW_10387_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10387_BAT: ### IGT changes ### #### Possible regressions #### * {igt@xe_pat@pat-index-xehpc@render} (NEW): - bat-pvc-2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10387/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html New tests --------- New tests have been introduced between XEIGT_7632_BAT and XEIGTPW_10387_BAT: ### New IGT tests (6) ### * igt@xe_pat@pat-index-xehpc@blt: - Statuses : 1 pass(s) - Exec time: [14.59] s * igt@xe_pat@pat-index-xehpc@dw: - Statuses : 1 pass(s) - Exec time: [24.32] s * igt@xe_pat@pat-index-xehpc@render: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@xe_pat@pat-index-xelp@blt: - Statuses : 3 pass(s) - Exec time: [0.81, 6.41] s * igt@xe_pat@pat-index-xelp@dw: - Statuses : 3 pass(s) - Exec time: [1.07, 9.78] s * igt@xe_pat@pat-index-xelp@render: - Statuses : 3 pass(s) - Exec time: [2.28, 21.62] s Known issues ------------ Here are the changes found in XEIGTPW_10387_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3: - bat-dg2-oem2: [PASS][2] -> [FAIL][3] ([Intel XE#480]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7632/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10387/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][4] -> [FAIL][5] ([Intel XE#480]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7632/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10387/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html #### Possible fixes #### * igt@xe_prime_self_import@basic-with_fd_dup: - bat-atsm-2: [FAIL][6] ([Intel XE#999]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7632/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10387/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999 Build changes ------------- * IGT: IGT_7632 -> IGTPW_10387 * Linux: xe-565-1fc141d1f445b8e5ab4ff14645b0482dd98460b9 -> xe-566-00175313322325f73095e61b6cbe550f47184408 IGTPW_10387: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html IGT_7632: 3fff86827c4728708072b9accbc990fa1084c95d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-565-1fc141d1f445b8e5ab4ff14645b0482dd98460b9: 1fc141d1f445b8e5ab4ff14645b0482dd98460b9 xe-566-00175313322325f73095e61b6cbe550f47184408: 00175313322325f73095e61b6cbe550f47184408 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10387/index.html [-- Attachment #2: Type: text/html, Size: 4673 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests (rev2) 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (2 preceding siblings ...) 2023-12-11 15:46 ` ✓ CI.xeBAT: " Patchwork @ 2023-12-11 16:41 ` Patchwork 2023-12-14 7:36 ` Patchwork 2023-12-14 9:22 ` ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-12-11 16:41 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 74068 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests (rev2) URL : https://patchwork.freedesktop.org/series/127429/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14006_full -> IGTPW_10387_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10387_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10387_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_10387/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10387_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@bonded-pair: - shard-tglu: NOTRUN -> [INCOMPLETE][1] +9 other tests incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [ABORT][2] +5 other tests abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-dg2: NOTRUN -> [ABORT][3] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@i915_pm_rc6_residency@rc6-accuracy@gt0: - shard-dg2: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html * igt@perf_pmu@busy-accuracy-2@rcs0: - shard-dg2: NOTRUN -> [INCOMPLETE][5] +8 other tests incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@perf_pmu@busy-accuracy-2@rcs0.html - shard-dg1: NOTRUN -> [INCOMPLETE][6] +7 other tests incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@perf_pmu@busy-accuracy-2@rcs0.html * igt@perf_pmu@busy-hang@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][7] +8 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk9/igt@perf_pmu@busy-hang@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][8] +20 other tests abort [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@busy-idle@rcs0: - shard-glk: NOTRUN -> [ABORT][9] +1 other test abort [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk1/igt@perf_pmu@busy-idle@rcs0.html * igt@perf_pmu@faulting-read@wb: - shard-mtlp: NOTRUN -> [DMESG-WARN][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@perf_pmu@faulting-read@wb.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_10387/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-dg1: NOTRUN -> [ABORT][12] +2 other tests abort [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@multi-client@rcs0: - shard-snb: NOTRUN -> [INCOMPLETE][13] +10 other tests incomplete [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@perf_pmu@multi-client@rcs0.html #### Warnings #### * igt@gem_exec_balancer@sequential: - shard-rkl: [INCOMPLETE][14] -> [ABORT][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-rkl-7/igt@gem_exec_balancer@sequential.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@gem_exec_balancer@sequential.html Known issues ------------ Here are the changes found in IGTPW_10387_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +19 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@drm_fdinfo@busy-check-all@ccs3.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8414]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3936]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3936]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555]) +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1099]) +7 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@gem_ctx_persistence@smoketest.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][37] ([i915#7975] / [i915#8213]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][38] ([i915#8898]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][39] -> [FAIL][40] ([i915#5784]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-dg1-19/igt@gem_eio@unwedge-stress.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer: - shard-glk: NOTRUN -> [INCOMPLETE][41] ([i915#2295]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk8/igt@gem_exec_balancer.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4771]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4771]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gem_exec_balancer@hog.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][45] ([i915#2842]) +4 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#7697]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_exec_gttfill@multigpu-basic.html - shard-dg2: NOTRUN -> [SKIP][49] ([i915#7697]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_exec_gttfill@multigpu-basic.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#7697]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#7697]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][52] ([i915#7697]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#5107]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][54] ([fdo#109283] / [i915#5107]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html - shard-dg1: NOTRUN -> [SKIP][55] ([fdo#109283]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@gem_exec_params@rsvd2-dirt.html - shard-tglu: NOTRUN -> [SKIP][56] ([fdo#109283]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +10 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3281]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281]) +10 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#3281]) +10 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4613]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk6/igt@gem_lmem_swapping@random.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_mmap_wc@write.html - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_mmap_wc@write.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190]) +13 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.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_10387/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][98] ([fdo#109289]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][100] ([i915#8925]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3555] / [i915#8925]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#4387]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#8437]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#6245]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][109] ([i915#6245]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#5190]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6229]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][115] ([fdo#111615] / [i915#5286]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [FAIL][120] ([i915#3743]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][121] -> [FAIL][122] ([i915#3743]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][124] ([fdo#110723]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111615]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +37 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#5354]) +58 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +17 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +38 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354]) +17 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +35 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#7828]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7828]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][136] ([fdo#111827]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_chamelium_color@ctm-0-50.html - shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111827]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_chamelium_color@ctm-negative.html - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#111827]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html - shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111827]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7828]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#109279] / [i915#3359]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3359]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][147] ([fdo#109279] / [i915#3359]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3359]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-glk: NOTRUN -> [SKIP][151] ([fdo#109271]) +137 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk3/igt@kms_cursor_crc@cursor-random-max-size.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#8814]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109274]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#9809]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#5354]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111767] / [fdo#111825]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg1: NOTRUN -> [SKIP][157] ([fdo#111767] / [fdo#111825]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-snb: NOTRUN -> [SKIP][158] ([fdo#109271] / [fdo#111767]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109274] / [fdo#111767]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][160] ([fdo#111767]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg2: NOTRUN -> [SKIP][161] ([fdo#109274] / [fdo#111767] / [i915#5354]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4103] / [i915#4213]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#4103]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#4103]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8827]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) +5 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#1839]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#1839]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1839]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109274]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#111825]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3637]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111825]) +34 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][181] ([fdo#109274] / [i915#3637]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][183] ([i915#8381]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#8381]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#2672]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-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-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2672]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +31 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#8708]) +15 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5460]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8708]) +13 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8708]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3458]) +14 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#3023]) +16 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#110189]) +18 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][199] ([fdo#109271]) +491 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109280]) +34 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111825] / [i915#1825]) +28 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +12 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#6301]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][209] ([i915#6301]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][210] ([i915#6301]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#6301]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109289]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][213] ([fdo#109289]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-tglu: NOTRUN -> [SKIP][214] ([fdo#109289]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-mtlp: NOTRUN -> [SKIP][215] ([fdo#109289]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555]) +8 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3582]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8821]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555]) +6 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8821]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#6953]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][222] ([i915#6953]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][223] ([i915#8292]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][224] ([i915#8292]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#5176] / [i915#9423]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5235]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +7 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5235]) +8 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#5235]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#5235]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#9519]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9519]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#4077]) +9 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_pm_rpm@fences.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9683]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9683]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9683]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9683]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][239] ([fdo#111068] / [i915#9683]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][240] ([fdo#111068] / [i915#9683]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#9683]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9685]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#9685]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#9685]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][245] ([i915#9685]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5289]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4235]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#5030]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][250] ([fdo#109309]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8808]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8850]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8850]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#8850]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#8850]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#8850]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3708] / [i915#4077]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3708] / [i915#4077]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3291] / [i915#3708]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109295] / [i915#3291] / [i915#3708]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3708]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@prime_vgem@basic-write.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][263], [FAIL][264]) ([i915#7812]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb4/igt@runner@aborted.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@runner@aborted.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][265] ([i915#9781]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][266] ([i915#9781]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-snb: NOTRUN -> [FAIL][267] ([i915#9781]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][268] ([i915#9781]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][269] ([i915#9781]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-mtlp: NOTRUN -> [FAIL][270] ([i915#9781]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#9779]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][272] ([i915#9779]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][273] ([i915#9779]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][274] ([i915#9779]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][275] ([i915#9779]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk4/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2575]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#2575]) +7 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][278] ([fdo#109315]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-tglu: NOTRUN -> [SKIP][279] ([fdo#109315] / [i915#2575]) +7 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#2575]) +7 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#2575]) +11 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#7711]) +9 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#7711]) +8 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@vc4/vc4_perfmon@create-two-perfmon.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#7711]) +10 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#7711]) +9 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [SKIP][286] ([fdo#109271]) -> [PASS][287] +3 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-snb2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [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#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#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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7632 -> IGTPW_10387 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14006: e3fd8d148b98f502ba4af1a335bdeebf444e0f23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10387: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html IGT_7632: 3fff86827c4728708072b9accbc990fa1084c95d @ 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_10387/index.html [-- Attachment #2: Type: text/html, Size: 95037 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests (rev2) 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (3 preceding siblings ...) 2023-12-11 16:41 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-14 7:36 ` Patchwork 2023-12-14 9:22 ` ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-12-14 7:36 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84068 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests (rev2) URL : https://patchwork.freedesktop.org/series/127429/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14006_full -> IGTPW_10387_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10387_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10387_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_10387/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10387_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rc6_residency@rc6-accuracy@gt0: - shard-dg2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html New tests --------- New tests have been introduced between CI_DRM_14006_full and IGTPW_10387_full: ### New IGT tests (67) ### * igt@api_intel_bb@delta-check: - Statuses : - Exec time: [None] s * igt@debugfs_test@sysfs: - Statuses : - Exec time: [None] s * igt@fbdev@eof: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@fbdev@nullptr: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@fbdev@read: - Statuses : 6 pass(s) - Exec time: [0.56, 3.04] s * igt@fbdev@unaligned-read: - Statuses : 6 pass(s) - Exec time: [0.01] s * igt@fbdev@unaligned-write: - Statuses : - Exec time: [None] s * igt@fbdev@write: - Statuses : - Exec time: [None] s * igt@gem_ctx_exec@basic-close-race: - Statuses : 1 pass(s) - Exec time: [5.61] s * igt@gem_ctx_exec@basic-nohangcheck: - Statuses : - Exec time: [None] s * igt@gem_ctx_persistence@file: - Statuses : - Exec time: [None] s * igt@gem_ctx_persistence@idempotent: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@process: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.18] s * igt@gem_ctx_persistence@processes: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@smoketest: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 31.48] s * igt@gem_eio@kms: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel: - Statuses : 2 abort(s) 1 skip(s) - Exec time: [0.0, 0.62] s * igt@gem_exec_balancer@parallel-balancer: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-bb-first: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-contexts: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-keep-in-fence: - Statuses : 2 abort(s) 1 skip(s) - Exec time: [0.0, 1.77] s * igt@gem_exec_balancer@parallel-keep-submit-fence: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-ordering: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-out-fence: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_suspend@basic-s0: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@basic: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@basic@lmem0: - Statuses : 1 pass(s) - Exec time: [19.79] s * igt@gem_lmem_swapping@heavy-multi: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@heavy-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@heavy-verify-multi: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@heavy-verify-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-multi: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@parallel-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-random-engines: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-random-engines@lmem0: - Statuses : 2 pass(s) - Exec time: [33.28, 33.97] s * igt@gem_lmem_swapping@parallel-random-verify: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@random: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@random-engines: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@smem-oom: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@verify: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@verify-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_mmap_gtt@close-race: - Statuses : 3 pass(s) 3 skip(s) - Exec time: [0.0, 20.10] s * igt@gem_mmap_gtt@cpuset-basic-small-copy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - Statuses : 1 pass(s) - Exec time: [1.25] s * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-big-copy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-big-copy-odd: - Statuses : 1 pass(s) 2 skip(s) - Exec time: [0.0, 21.94] s * igt@gem_mmap_gtt@cpuset-big-copy-xy: - Statuses : 1 pass(s) - Exec time: [3.41] s * igt@gem_mmap_gtt@cpuset-medium-copy: - Statuses : 4 pass(s) 3 skip(s) - Exec time: [0.0, 8.90] s * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@flink-race: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@hang-busy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@hang-user: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@isolation: - Statuses : 3 pass(s) 3 skip(s) - Exec time: [0.0, 0.01] s * igt@gem_pread@exhaustion: - Statuses : - Exec time: [None] s * igt@gem_pwrite@basic-exhaustion: - Statuses : - Exec time: [None] s * igt@gem_pwrite@basic-self: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@gem_userptr_blits@huge-split: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@gem_userptr_blits@nohangcheck: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@stress-purge: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@vma-merge: - Statuses : - Exec time: [None] s * igt@sysfs_defaults@readonly@bcs0: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@sysfs_defaults@readonly@rcs0: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@sysfs_defaults@readonly@vcs0: - Statuses : 6 pass(s) - Exec time: [0.0, 0.00] s * igt@sysfs_defaults@readonly@vcs1: - Statuses : 4 pass(s) - Exec time: [0.0, 0.00] s * igt@sysfs_defaults@readonly@vecs0: - Statuses : 5 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10387_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8414]) +5 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +19 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@drm_fdinfo@busy-check-all@ccs3.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +9 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#3936]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#3936]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3936]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555]) +9 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3555]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@smoketest (NEW): - shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@gem_ctx_persistence@smoketest.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][23] ([i915#7975] / [i915#8213]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][24] ([i915#8898]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-dg1-19/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#2295]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk8/igt@gem_exec_balancer.html * igt@gem_exec_balancer@bonded-pair: - shard-tglu: NOTRUN -> [INCOMPLETE][28] ([i915#9856]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@gem_exec_balancer@bonded-pair.html - shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#9856]) +1 other test incomplete [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk3/igt@gem_exec_balancer@bonded-pair.html - shard-mtlp: NOTRUN -> [ABORT][30] ([i915#9856]) +2 other tests abort [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: NOTRUN -> [INCOMPLETE][33] ([i915#9856]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gem_exec_balancer@hog.html - shard-dg2: NOTRUN -> [ABORT][35] ([i915#9856]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-7/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel (NEW): - shard-rkl: NOTRUN -> [ABORT][36] ([i915#9855]) +1 other test abort [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-in-fence (NEW): - shard-dg2: NOTRUN -> [ABORT][37] ([i915#9855]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][38] ([i915#2842]) +4 other tests fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@gem_exec_flush@basic-wb-prw-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_10387/shard-mtlp-7/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_10387/shard-dg2-3/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_10387/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_10387/shard-dg1-15/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_10387/shard-tglu-2/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][47] ([fdo#109283] / [i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html - shard-dg1: NOTRUN -> [SKIP][48] ([fdo#109283]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@gem_exec_params@rsvd2-dirt.html - shard-tglu: NOTRUN -> [SKIP][49] ([fdo#109283]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +9 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +10 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_whisper@basic-forked-all: - shard-snb: NOTRUN -> [INCOMPLETE][54] ([i915#9857]) +3 other tests incomplete [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb2/igt@gem_exec_whisper@basic-forked-all.html * igt@gem_exec_whisper@basic-normal-all: - shard-mtlp: NOTRUN -> [ABORT][55] ([i915#9857]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_whisper@basic-normal-all.html * igt@gem_exec_whisper@basic-queues-all: - shard-tglu: NOTRUN -> [INCOMPLETE][56] ([i915#9857]) +1 other test incomplete [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@gem_exec_whisper@basic-queues-all.html - shard-glk: NOTRUN -> [INCOMPLETE][57] ([i915#9857]) +1 other test incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk7/igt@gem_exec_whisper@basic-queues-all.html - shard-mtlp: NOTRUN -> [ABORT][58] ([i915#9855]) +5 other tests abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@basic (NEW): - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random (NEW): - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#4613]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk6/igt@gem_lmem_swapping@random.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@cpuset-big-copy-odd (NEW): - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_mmap_wc@write.html - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_mmap_wc@write.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190]) +13 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][78] ([i915#5889]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#8399]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][95] ([i915#8399]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#109289]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-snb: NOTRUN -> [INCOMPLETE][97] ([i915#9858]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8925]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3555] / [i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4387]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8437]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#6245]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6245]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#5190]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6229]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [FAIL][119] ([i915#3743]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][120] -> [FAIL][121] ([i915#3743]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#110723]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][125] ([fdo#111615]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +37 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5354]) +58 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +17 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +38 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354]) +17 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +35 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#7828]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][135] ([fdo#111827]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_chamelium_color@ctm-0-50.html - shard-tglu: NOTRUN -> [SKIP][136] ([fdo#111827]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_chamelium_color@ctm-negative.html - shard-dg2: NOTRUN -> [SKIP][138] ([fdo#111827]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html - shard-rkl: NOTRUN -> [SKIP][139] ([fdo#111827]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#109279] / [i915#3359]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3359]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3359]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][146] ([fdo#109279] / [i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3359]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-glk: NOTRUN -> [SKIP][150] ([fdo#109271]) +137 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk3/igt@kms_cursor_crc@cursor-random-max-size.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#9809]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [i915#5354]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111767] / [fdo#111825]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg1: NOTRUN -> [SKIP][156] ([fdo#111767] / [fdo#111825]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-snb: NOTRUN -> [SKIP][157] ([fdo#109271] / [fdo#111767]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274] / [fdo#111767]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][159] ([fdo#111767]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109274] / [fdo#111767] / [i915#5354]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4213]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#4103]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8827]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#1839]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#1839]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#1839]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111825]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][179] ([fdo#111825]) +34 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109274] / [i915#3637]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#8381]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#2672]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-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-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1825]) +31 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +15 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#5460]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8708]) +13 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8708]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +14 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3023]) +16 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#110189]) +18 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +491 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109280]) +34 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825] / [i915#1825]) +28 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3458]) +12 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8228]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#6301]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][208] ([i915#6301]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#6301]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#6301]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109289]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][212] ([fdo#109289]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109289]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-mtlp: NOTRUN -> [SKIP][214] ([fdo#109289]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555]) +8 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3582]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8821]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8821]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#6953]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#6953]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][222] ([i915#8292]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][223] ([i915#8292]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5176] / [i915#9423]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5235]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#5235]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5235]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#5235]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#5235]) +7 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#5235]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9519]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9519]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#4077]) +9 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_pm_rpm@fences.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9683]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9683]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9683]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][237] ([i915#9683]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#111068] / [i915#9683]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#111068] / [i915#9683]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][240] ([fdo#111068] / [i915#9683]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9685]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9685]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9685]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9685]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#5289]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#4235]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#4235]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5030]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][249] ([fdo#109309]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8808]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@perf@non-zero-reason@0-rcs0: - shard-mtlp: NOTRUN -> [ABORT][251] ([i915#9847]) +6 other tests abort [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@oa-exponents@0-rcs0: - shard-rkl: NOTRUN -> [ABORT][252] ([i915#9847]) +1 other test abort [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@perf@oa-exponents@0-rcs0.html - shard-dg1: NOTRUN -> [ABORT][253] ([i915#9847]) +1 other test abort [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@perf@oa-exponents@0-rcs0.html * igt@perf_pmu@busy-accuracy-2@rcs0: - shard-dg2: NOTRUN -> [INCOMPLETE][254] ([i915#9853]) +7 other tests incomplete [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@perf_pmu@busy-accuracy-2@rcs0.html - shard-dg1: NOTRUN -> [INCOMPLETE][255] ([i915#9853]) +7 other tests incomplete [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@perf_pmu@busy-accuracy-2@rcs0.html * igt@perf_pmu@busy-hang@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#9853]) +4 other tests incomplete [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk9/igt@perf_pmu@busy-hang@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][257] ([i915#9853]) +3 other tests abort [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@busy-idle@rcs0: - shard-glk: NOTRUN -> [ABORT][258] ([i915#9853]) +1 other test abort [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk1/igt@perf_pmu@busy-idle@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8850]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#8850]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#8850]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#8850]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@enable-race@rcs0: - shard-rkl: NOTRUN -> [ABORT][264] ([i915#9853]) +1 other test abort [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@perf_pmu@enable-race@rcs0.html * igt@perf_pmu@faulting-read@wb: - shard-mtlp: NOTRUN -> [DMESG-WARN][265] ([i915#9847]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@perf_pmu@faulting-read@wb.html * igt@perf_pmu@gt-awake: - shard-tglu: NOTRUN -> [INCOMPLETE][266] ([i915#9853]) +6 other tests incomplete [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@perf_pmu@gt-awake.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [INCOMPLETE][267] ([i915#9853]) +4 other tests incomplete [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-dg1: NOTRUN -> [ABORT][268] ([i915#9853]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@multi-client@rcs0: - shard-snb: NOTRUN -> [INCOMPLETE][269] ([i915#9853]) +5 other tests incomplete [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@perf_pmu@multi-client@rcs0.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#3708] / [i915#4077]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#3708] / [i915#4077]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3291] / [i915#3708]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][273] ([fdo#109295] / [i915#3291] / [i915#3708]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3708]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3708]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@prime_vgem@basic-write.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][276], [FAIL][277]) ([i915#7812]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb4/igt@runner@aborted.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@runner@aborted.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][278] ([i915#9781]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][279] ([i915#9781]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-snb: NOTRUN -> [FAIL][280] ([i915#9781]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][281] ([i915#9781]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][282] ([i915#9781]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-mtlp: NOTRUN -> [FAIL][283] ([i915#9781]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][284] ([i915#9779]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][285] ([i915#9779]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][286] ([i915#9779]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][287] ([i915#9779]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][288] ([i915#9779]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk4/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#2575]) +6 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#2575]) +7 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][291] ([fdo#109315]) +7 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-tglu: NOTRUN -> [SKIP][292] ([fdo#109315] / [i915#2575]) +7 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#2575]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2575]) +11 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#7711]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#7711]) +8 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@vc4/vc4_perfmon@create-two-perfmon.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#7711]) +10 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#7711]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [SKIP][299] ([fdo#109271]) -> [PASS][300] +3 other tests pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-snb2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html #### Warnings #### * igt@gem_exec_balancer@sequential: - shard-rkl: [INCOMPLETE][301] ([i915#9856]) -> [ABORT][302] ([i915#9855]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-rkl-7/igt@gem_exec_balancer@sequential.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@gem_exec_balancer@sequential.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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [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#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#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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [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_7632 -> IGTPW_10387 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14006: e3fd8d148b98f502ba4af1a335bdeebf444e0f23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10387: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html IGT_7632: 3fff86827c4728708072b9accbc990fa1084c95d @ 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_10387/index.html [-- Attachment #2: Type: text/html, Size: 108851 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.IGT: success for tests/intel/xe_pat: limit number of dynamic tests (rev2) 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (4 preceding siblings ...) 2023-12-14 7:36 ` Patchwork @ 2023-12-14 9:22 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-12-14 9:22 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 83629 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests (rev2) URL : https://patchwork.freedesktop.org/series/127429/ State : success == Summary == CI Bug Log - changes from CI_DRM_14006_full -> IGTPW_10387_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between CI_DRM_14006_full and IGTPW_10387_full: ### New IGT tests (67) ### * igt@api_intel_bb@delta-check: - Statuses : - Exec time: [None] s * igt@debugfs_test@sysfs: - Statuses : - Exec time: [None] s * igt@fbdev@eof: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@fbdev@nullptr: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@fbdev@read: - Statuses : 6 pass(s) - Exec time: [0.56, 3.04] s * igt@fbdev@unaligned-read: - Statuses : 6 pass(s) - Exec time: [0.01] s * igt@fbdev@unaligned-write: - Statuses : - Exec time: [None] s * igt@fbdev@write: - Statuses : - Exec time: [None] s * igt@gem_ctx_exec@basic-close-race: - Statuses : 1 pass(s) - Exec time: [5.61] s * igt@gem_ctx_exec@basic-nohangcheck: - Statuses : - Exec time: [None] s * igt@gem_ctx_persistence@file: - Statuses : - Exec time: [None] s * igt@gem_ctx_persistence@idempotent: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@process: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.18] s * igt@gem_ctx_persistence@processes: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@smoketest: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 31.48] s * igt@gem_eio@kms: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel: - Statuses : 2 abort(s) 1 skip(s) - Exec time: [0.0, 0.62] s * igt@gem_exec_balancer@parallel-balancer: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-bb-first: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-contexts: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-keep-in-fence: - Statuses : 2 abort(s) 1 skip(s) - Exec time: [0.0, 1.77] s * igt@gem_exec_balancer@parallel-keep-submit-fence: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-ordering: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-out-fence: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_suspend@basic-s0: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@basic: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@basic@lmem0: - Statuses : 1 pass(s) - Exec time: [19.79] s * igt@gem_lmem_swapping@heavy-multi: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@heavy-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@heavy-verify-multi: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@heavy-verify-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-multi: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@parallel-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-random-engines: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-random-engines@lmem0: - Statuses : 2 pass(s) - Exec time: [33.28, 33.97] s * igt@gem_lmem_swapping@parallel-random-verify: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@random: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@random-engines: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@smem-oom: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@verify: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@verify-random: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_mmap_gtt@close-race: - Statuses : 3 pass(s) 3 skip(s) - Exec time: [0.0, 20.10] s * igt@gem_mmap_gtt@cpuset-basic-small-copy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - Statuses : 1 pass(s) - Exec time: [1.25] s * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-big-copy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-big-copy-odd: - Statuses : 1 pass(s) 2 skip(s) - Exec time: [0.0, 21.94] s * igt@gem_mmap_gtt@cpuset-big-copy-xy: - Statuses : 1 pass(s) - Exec time: [3.41] s * igt@gem_mmap_gtt@cpuset-medium-copy: - Statuses : 4 pass(s) 3 skip(s) - Exec time: [0.0, 8.90] s * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@flink-race: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@hang-busy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@hang-user: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@isolation: - Statuses : 3 pass(s) 3 skip(s) - Exec time: [0.0, 0.01] s * igt@gem_pread@exhaustion: - Statuses : - Exec time: [None] s * igt@gem_pwrite@basic-exhaustion: - Statuses : - Exec time: [None] s * igt@gem_pwrite@basic-self: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@gem_userptr_blits@huge-split: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@gem_userptr_blits@nohangcheck: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@stress-purge: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@vma-merge: - Statuses : - Exec time: [None] s * igt@sysfs_defaults@readonly@bcs0: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@sysfs_defaults@readonly@rcs0: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@sysfs_defaults@readonly@vcs0: - Statuses : 6 pass(s) - Exec time: [0.0, 0.00] s * igt@sysfs_defaults@readonly@vcs1: - Statuses : 4 pass(s) - Exec time: [0.0, 0.00] s * igt@sysfs_defaults@readonly@vecs0: - Statuses : 5 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10387_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8414]) +5 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +19 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@drm_fdinfo@busy-check-all@ccs3.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +9 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#3936]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#3936]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#3936]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#3555]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3555]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@smoketest (NEW): - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@gem_ctx_persistence@smoketest.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][23] ([i915#8898]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-dg1-19/igt@gem_eio@unwedge-stress.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer: - shard-glk: NOTRUN -> [INCOMPLETE][26] ([i915#2295]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk8/igt@gem_exec_balancer.html * igt@gem_exec_balancer@bonded-pair: - shard-tglu: NOTRUN -> [INCOMPLETE][27] ([i915#9856]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@gem_exec_balancer@bonded-pair.html - shard-glk: NOTRUN -> [INCOMPLETE][28] ([i915#9856]) +1 other test incomplete [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk3/igt@gem_exec_balancer@bonded-pair.html - shard-mtlp: NOTRUN -> [ABORT][29] ([i915#9856]) +2 other tests abort [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: NOTRUN -> [INCOMPLETE][32] ([i915#9856]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gem_exec_balancer@hog.html - shard-dg2: NOTRUN -> [ABORT][34] ([i915#9856]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-7/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel (NEW): - shard-rkl: NOTRUN -> [ABORT][35] ([i915#9855]) +1 other test abort [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-in-fence (NEW): - shard-dg2: NOTRUN -> [ABORT][36] ([i915#9855]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) +4 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#7697]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_exec_gttfill@multigpu-basic.html - shard-dg2: NOTRUN -> [SKIP][41] ([i915#7697]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_exec_gttfill@multigpu-basic.html - shard-rkl: NOTRUN -> [SKIP][42] ([i915#7697]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#7697]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][44] ([i915#7697]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#5107]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][46] ([fdo#109283] / [i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html - shard-dg1: NOTRUN -> [SKIP][47] ([fdo#109283]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@gem_exec_params@rsvd2-dirt.html - shard-tglu: NOTRUN -> [SKIP][48] ([fdo#109283]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_whisper@basic-forked-all: - shard-snb: NOTRUN -> [INCOMPLETE][53] ([i915#9857]) +3 other tests incomplete [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb2/igt@gem_exec_whisper@basic-forked-all.html * igt@gem_exec_whisper@basic-normal-all: - shard-mtlp: NOTRUN -> [ABORT][54] ([i915#9857]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_exec_whisper@basic-normal-all.html * igt@gem_exec_whisper@basic-queues-all: - shard-tglu: NOTRUN -> [INCOMPLETE][55] ([i915#9857]) +1 other test incomplete [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@gem_exec_whisper@basic-queues-all.html - shard-glk: NOTRUN -> [INCOMPLETE][56] ([i915#9857]) +1 other test incomplete [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk7/igt@gem_exec_whisper@basic-queues-all.html - shard-mtlp: NOTRUN -> [ABORT][57] ([i915#9855]) +5 other tests abort [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.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_10387/shard-mtlp-7/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@basic (NEW): - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random (NEW): - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#4613]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk6/igt@gem_lmem_swapping@random.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@cpuset-big-copy-odd (NEW): - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gem_mmap_wc@write.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@gem_mmap_wc@write.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190]) +13 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +7 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][77] ([i915#5889]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][94] ([i915#8399]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][95] ([fdo#109289]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-accuracy@gt0: - shard-dg2: NOTRUN -> [FAIL][96] ([i915#9879]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-snb: NOTRUN -> [INCOMPLETE][97] ([i915#9858]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8925]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3555] / [i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4387]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8437]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#6245]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6245]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#5190]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6229]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [FAIL][119] ([i915#3743]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][120] -> [FAIL][121] ([i915#3743]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#110723]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][125] ([fdo#111615]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +37 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5354]) +58 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +17 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +38 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354]) +17 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +35 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#7828]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][135] ([fdo#111827]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_chamelium_color@ctm-0-50.html - shard-tglu: NOTRUN -> [SKIP][136] ([fdo#111827]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_chamelium_color@ctm-negative.html - shard-dg2: NOTRUN -> [SKIP][138] ([fdo#111827]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html - shard-rkl: NOTRUN -> [SKIP][139] ([fdo#111827]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#109279] / [i915#3359]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3359]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3359]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][146] ([fdo#109279] / [i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3359]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-glk: NOTRUN -> [SKIP][150] ([fdo#109271]) +137 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk3/igt@kms_cursor_crc@cursor-random-max-size.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#9809]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [i915#5354]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111767] / [fdo#111825]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg1: NOTRUN -> [SKIP][156] ([fdo#111767] / [fdo#111825]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-snb: NOTRUN -> [SKIP][157] ([fdo#109271] / [fdo#111767]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274] / [fdo#111767]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][159] ([fdo#111767]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109274] / [fdo#111767] / [i915#5354]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4213]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#4103]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8827]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#1839]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#1839]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#1839]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111825]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][179] ([fdo#111825]) +34 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109274] / [i915#3637]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#8381]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#2672]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-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-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1825]) +31 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +15 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#5460]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8708]) +13 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8708]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +14 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3023]) +16 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#110189]) +18 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +491 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109280]) +34 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825] / [i915#1825]) +28 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3458]) +12 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8228]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#6301]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][208] ([i915#6301]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#6301]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#6301]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-14/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109289]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][212] ([fdo#109289]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109289]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-mtlp: NOTRUN -> [SKIP][214] ([fdo#109289]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555]) +8 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3582]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8821]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8821]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#6953]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#6953]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][222] ([i915#8292]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][223] ([i915#8292]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5176] / [i915#9423]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5235]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#5235]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5235]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#5235]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#5235]) +7 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#5235]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9519]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9519]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#4077]) +9 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_pm_rpm@fences.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9683]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9683]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9683]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][237] ([i915#9683]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#111068] / [i915#9683]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#111068] / [i915#9683]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][240] ([fdo#111068] / [i915#9683]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-19/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9685]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9685]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9685]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9685]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#5289]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#4235]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#4235]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5030]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][249] ([fdo#109309]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8808]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@perf@non-zero-reason@0-rcs0: - shard-mtlp: NOTRUN -> [ABORT][251] ([i915#9847]) +6 other tests abort [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@oa-exponents@0-rcs0: - shard-rkl: NOTRUN -> [ABORT][252] ([i915#9847]) +1 other test abort [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@perf@oa-exponents@0-rcs0.html - shard-dg1: NOTRUN -> [ABORT][253] ([i915#9847]) +1 other test abort [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@perf@oa-exponents@0-rcs0.html * igt@perf_pmu@busy-accuracy-2@rcs0: - shard-dg2: NOTRUN -> [INCOMPLETE][254] ([i915#9853]) +7 other tests incomplete [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@perf_pmu@busy-accuracy-2@rcs0.html - shard-dg1: NOTRUN -> [INCOMPLETE][255] ([i915#9853]) +7 other tests incomplete [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@perf_pmu@busy-accuracy-2@rcs0.html * igt@perf_pmu@busy-hang@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#9853]) +4 other tests incomplete [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk9/igt@perf_pmu@busy-hang@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][257] ([i915#9853]) +3 other tests abort [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@busy-idle@rcs0: - shard-glk: NOTRUN -> [ABORT][258] ([i915#9853]) +1 other test abort [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk1/igt@perf_pmu@busy-idle@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8850]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#8850]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#8850]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#8850]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@enable-race@rcs0: - shard-rkl: NOTRUN -> [ABORT][264] ([i915#9853]) +1 other test abort [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-5/igt@perf_pmu@enable-race@rcs0.html * igt@perf_pmu@faulting-read@wb: - shard-mtlp: NOTRUN -> [DMESG-WARN][265] ([i915#9847]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-2/igt@perf_pmu@faulting-read@wb.html * igt@perf_pmu@gt-awake: - shard-tglu: NOTRUN -> [INCOMPLETE][266] ([i915#9853]) +6 other tests incomplete [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-6/igt@perf_pmu@gt-awake.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [INCOMPLETE][267] ([i915#9853]) +4 other tests incomplete [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-dg1: NOTRUN -> [ABORT][268] ([i915#9853]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@multi-client@rcs0: - shard-snb: NOTRUN -> [INCOMPLETE][269] ([i915#9853]) +5 other tests incomplete [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@perf_pmu@multi-client@rcs0.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#3708] / [i915#4077]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#3708] / [i915#4077]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3291] / [i915#3708]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-10/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][273] ([fdo#109295] / [i915#3291] / [i915#3708]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3708]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3708]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-5/igt@prime_vgem@basic-write.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][276], [FAIL][277]) ([i915#7812]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb4/igt@runner@aborted.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb6/igt@runner@aborted.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][278] ([i915#9781]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][279] ([i915#9781]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-16/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-snb: NOTRUN -> [FAIL][280] ([i915#9781]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb1/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][281] ([i915#9781]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-4/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][282] ([i915#9781]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-mtlp: NOTRUN -> [FAIL][283] ([i915#9781]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][284] ([i915#9779]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][285] ([i915#9779]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-7/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][286] ([i915#9779]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-13/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][287] ([i915#9779]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][288] ([i915#9779]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-glk4/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#2575]) +6 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#2575]) +7 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][291] ([fdo#109315]) +7 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-tglu: NOTRUN -> [SKIP][292] ([fdo#109315] / [i915#2575]) +7 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#2575]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-11/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2575]) +11 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-tglu-9/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#7711]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-mtlp-8/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#7711]) +8 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@vc4/vc4_perfmon@create-two-perfmon.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#7711]) +10 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg1-17/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#7711]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-dg2-2/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [SKIP][299] ([fdo#109271]) -> [PASS][300] +3 other tests pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-snb2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-snb7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html #### Warnings #### * igt@gem_exec_balancer@sequential: - shard-rkl: [INCOMPLETE][301] ([i915#9856]) -> [ABORT][302] ([i915#9855]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14006/shard-rkl-7/igt@gem_exec_balancer@sequential.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/shard-rkl-3/igt@gem_exec_balancer@sequential.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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [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#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#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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [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 [i915#9879]: https://gitlab.freedesktop.org/drm/intel/issues/9879 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7632 -> IGTPW_10387 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14006: e3fd8d148b98f502ba4af1a335bdeebf444e0f23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10387: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10387/index.html IGT_7632: 3fff86827c4728708072b9accbc990fa1084c95d @ 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_10387/index.html [-- Attachment #2: Type: text/html, Size: 108400 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-12-14 9:22 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-11 10:12 [PATCH i-g-t v2] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld 2023-12-11 12:30 ` Kamil Konieczny 2023-12-11 15:01 ` ✓ Fi.CI.BAT: success for tests/intel/xe_pat: limit number of dynamic tests (rev2) Patchwork 2023-12-11 15:46 ` ✓ CI.xeBAT: " Patchwork 2023-12-11 16:41 ` ✗ Fi.CI.IGT: failure " Patchwork 2023-12-14 7:36 ` Patchwork 2023-12-14 9:22 ` ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox