* [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests
@ 2023-12-06 12:12 Matthew Auld
2023-12-06 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Matthew Auld @ 2023-12-06 12: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:
xe-pat-index@{xelp, xehpc, xelpg, xe2}-{dw, blt, render}
Signed-off-by: Matthew Auld <matthew.auld@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] 11+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld @ 2023-12-06 12:59 ` Patchwork 2023-12-06 14:08 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-06 12:59 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2466 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests URL : https://patchwork.freedesktop.org/series/127429/ State : success == Summary == CI Bug Log - changes from IGT_7623 -> IGTPW_10352 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html Participating hosts (39 -> 38) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10352 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-dpms@d-dp6: - bat-adlp-11: [PASS][1] -> [DMESG-WARN][2] ([i915#6868]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][3] -> [FAIL][4] ([IGT#3]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html #### Possible fixes #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-1: - bat-dg2-8: [DMESG-WARN][5] ([i915#1982]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-1.html [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7623 -> IGTPW_10352 CI-20190529: 20190529 CI_DRM_13986: b441e2df33ada84a77c2da0b5619e212e94675bf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10352: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html IGT_7623: f42cda2a9ad74846fb59eea436cc98c8789849f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html [-- Attachment #2: Type: text/html, Size: 3121 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld 2023-12-06 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-12-06 14:08 ` Patchwork 2023-12-06 14:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-06 14:08 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4617 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests URL : https://patchwork.freedesktop.org/series/127429/ State : success == Summary == CI Bug Log - changes from XEIGT_7623_BAT -> XEIGTPW_10352_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_10352_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_10352_BAT, 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. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10352_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_10352/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html #### Warnings #### * igt@xe_prime_self_import@basic-with_one_bo: - bat-atsm-2: [FAIL][2] ([Intel XE#999]) -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7623/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10352/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html - bat-pvc-2: [FAIL][4] ([Intel XE#999]) -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7623/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10352/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html New tests --------- New tests have been introduced between XEIGT_7623_BAT and XEIGTPW_10352_BAT: ### New IGT tests (6) ### * igt@xe_pat@pat-index-xehpc@blt: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@xe_pat@pat-index-xehpc@dw: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@xe_pat@pat-index-xehpc@render: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_pat@pat-index-xelp@blt: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@xe_pat@pat-index-xelp@dw: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@xe_pat@pat-index-xelp@render: - Statuses : 3 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_10352_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - bat-adlp-7: [PASS][6] -> [FAIL][7] ([i915#2346]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7623/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10352/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [FAIL][8] ([Intel XE#480]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7623/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10352/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html #### Warnings #### * igt@xe_prime_self_import@basic-with_fd_dup: - bat-pvc-2: [FAIL][10] -> [FAIL][11] ([Intel XE#999]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7623/bat-pvc-2/igt@xe_prime_self_import@basic-with_fd_dup.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10352/bat-pvc-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 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7623 -> IGTPW_10352 IGTPW_10352: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html IGT_7623: f42cda2a9ad74846fb59eea436cc98c8789849f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-554-9d76164e08c68a3d5d081ff7b07c15a2cadf741a: 9d76164e08c68a3d5d081ff7b07c15a2cadf741a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10352/index.html [-- Attachment #2: Type: text/html, Size: 5664 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld 2023-12-06 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-12-06 14:08 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-12-06 14:36 ` Patchwork 2023-12-07 14:16 ` Kamil Konieczny 2023-12-07 14:55 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny ` (3 subsequent siblings) 6 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2023-12-06 14:36 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests URL : https://patchwork.freedesktop.org/series/127429/ State : failure == Summary == CI Bug Log - changes from IGT_7623_full -> IGTPW_10352_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10352_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10352_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_10352/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10352_full: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [ABORT][1] +4 other tests abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html - shard-dg1: NOTRUN -> [ABORT][2] +4 other tests abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: NOTRUN -> [WARN][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_selftest@live@gt_lrc: - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gt_lrc.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gt_lrc.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][8] -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html Known issues ------------ Here are the changes found in IGTPW_10352_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#6230]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@core_hotunplug@unbind-rebind: - shard-snb: NOTRUN -> [ABORT][13] ([i915#8213] / [i915#8668]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9318]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#7701]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7701]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7701]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][18] ([i915#9408]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +21 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +13 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +11 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4873]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][25] ([i915#7297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][30] ([i915#8562]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#6268]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1099]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#8555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][40] ([i915#5784]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][41] ([i915#8898]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4771]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4771]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#8555]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#6334]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][47] ([i915#6334]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][48] ([i915#9606]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [PASS][50] -> [FAIL][51] ([i915#2842]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][52] ([i915#2842]) +4 other tests fail [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4473] / [i915#4771]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][54] ([i915#2842]) +3 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#7697]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_exec_gttfill@multigpu-basic.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#7697]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][60] ([i915#7697]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3281]) +13 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3281]) +15 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281]) +15 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3281]) +17 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4537] / [i915#4812]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4812]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4860]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4860]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2190]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613] / [i915#7582]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#4613]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#4613]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#8289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +19 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +10 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4083]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4083]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4083]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3282]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#4270]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4270]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4270]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][89] ([i915#4270]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#8428]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190]) +19 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4079]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8411]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3282]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4885]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][97] ([i915#5889]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4077]) +19 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4079]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#4079]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4879]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4879]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4879]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][104] ([fdo#110542]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html - shard-tglu: NOTRUN -> [SKIP][105] ([fdo#110542]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3323]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3297]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3297]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3297]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][112] ([i915#3318]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk2/igt@gem_userptr_blits@vma-merge.html - shard-dg2: NOTRUN -> [FAIL][113] ([i915#3318]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109289]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen3_render_tiledx_blits.html - shard-dg1: NOTRUN -> [SKIP][115] ([fdo#109289]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#109289]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][117] -> [INCOMPLETE][118] ([i915#5566]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-glk2/igt@gen9_exec_parse@allowed-all.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#2527]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#2527]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#2527] / [i915#2856]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#2856]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2856]) +11 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4881]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4881]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4881]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#6227]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#8399]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#8399]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][130] ([i915#2681]) +3 other tests warn [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][131] ([i915#3591]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6621]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#8925]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rps@thresholds-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8925]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][135] ([i915#8346]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][136] -> [DMESG-FAIL][137] ([i915#9780]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: NOTRUN -> [ABORT][138] ([i915#8213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-rkl: NOTRUN -> [ABORT][139] ([i915#8213]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html - shard-snb: NOTRUN -> [ABORT][140] ([i915#4817] / [i915#8213] / [i915#8668]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-dg1: NOTRUN -> [ABORT][141] ([i915#4817] / [i915#8213]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html - shard-tglu: NOTRUN -> [ABORT][142] ([i915#8213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-glk: NOTRUN -> [ABORT][143] ([i915#8213] / [i915#8668]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@i915_suspend@basic-s2idle-without-i915.html - shard-mtlp: NOTRUN -> [ABORT][144] ([i915#8213] / [i915#8668]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4215]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4215] / [i915#5190]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4212]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4212]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8709]) +11 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#8709]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#8709]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6228]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6228]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#9531]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9531]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][156] ([fdo#109271] / [i915#1769]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][157] ([i915#1769] / [i915#3555]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#1769] / [i915#3555]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#111615] / [i915#5286]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#5286]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#5286]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#5286]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5286]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#5138]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111614] / [i915#3638]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][168] ([fdo#111614]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][169] ([fdo#111614]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#111614]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][171] -> [FAIL][172] ([i915#3743]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6187]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][174] ([fdo#110723]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#4538] / [i915#5190]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#111615]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][178] ([fdo#111615]) +10 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#2705]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#2705]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#5354] / [i915#6095]) +73 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#5354] / [i915#6095]) +53 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5354]) +131 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#5354] / [i915#6095]) +40 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#5354] / [i915#6095]) +53 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#5354]) +55 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3742]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#4087]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][190] ([fdo#111827]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111827]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_chamelium_color@ctm-red-to-blue.html - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#111827]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][193] ([fdo#111827]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_chamelium_color@gamma.html - shard-dg1: NOTRUN -> [SKIP][194] ([fdo#111827]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#7828]) +9 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_chamelium_edid@hdmi-mode-timings.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#7828]) +9 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#7828]) +17 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#7828]) +16 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#7828]) +16 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#6944]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9424]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][203] ([i915#9424]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8063] / [i915#9433]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#7118]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#7118]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#7116]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3359]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][209] ([fdo#109279] / [i915#3359]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3359]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3359]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8814]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#3359]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3359]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555]) +8 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9809]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][217] ([fdo#109274] / [i915#5354]) +8 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109274]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9067]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9067]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9067]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#4103] / [i915#4213]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#4103] / [i915#4213]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#9723]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3840] / [i915#9688]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#110189] / [i915#3955]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3469]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3469]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#1839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9337]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9337]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9337]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#9337]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#658]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109274] / [i915#3637] / [i915#3966]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][243] ([fdo#111767] / [i915#3637]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2: NOTRUN -> [SKIP][244] ([fdo#109274] / [fdo#111767]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][245] ([fdo#111767] / [fdo#111825]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][246] ([fdo#111767] / [fdo#111825]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109274] / [fdo#111767] / [i915#3637]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#8381]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8381]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][250] ([fdo#109274] / [i915#3637]) +6 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][251] ([fdo#109274]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3637]) +6 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8381]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#2672]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][257] ([i915#2672]) +8 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672]) +6 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8810]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][260] ([fdo#109285]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][261] ([fdo#109285]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][262] ([i915#6880]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][263] ([fdo#111825] / [i915#1825]) +52 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-snb: [PASS][264] -> [SKIP][265] ([fdo#109271]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][266] ([fdo#109280]) +30 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][267] ([fdo#111825]) +60 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5460]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#3458]) +33 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#3458]) +32 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][271] ([fdo#111825]) +19 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#8708]) +35 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][273] ([fdo#109271]) +318 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9653]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9653]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3023]) +36 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8708]) +12 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#1825]) +31 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][279] ([fdo#109271]) +352 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#8708]) +34 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][281] ([fdo#110189]) +25 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#6301]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][289] ([fdo#109289]) +6 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][290] ([i915#7862]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][291] ([i915#4573]) +3 other tests fail [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#3582]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#8806]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#3555]) +9 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8806]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8806]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#9423]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9423]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#9423]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#5176] / [i915#9423]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#5235]) +15 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#5235]) +9 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#5235]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#5235]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#5235]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#5235]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#5354]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#9685]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][309] ([i915#9685]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [FAIL][310] ([i915#9298]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9685]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#3361]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9340]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#9340]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#8430]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][316] ([i915#8430]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9519]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#9519]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][321] -> [SKIP][322] ([i915#9519]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][323] ([fdo#109293] / [fdo#109506]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-dg1: NOTRUN -> [SKIP][324] ([fdo#109293] / [fdo#109506]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6524]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#6524]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#6524]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][329] ([i915#6524] / [i915#6805]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9683]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][331] ([fdo#111068] / [i915#9683]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#4348]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][333] ([fdo#109642] / [fdo#111068] / [i915#9683]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9683]) +6 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][335] ([fdo#111068] / [i915#9683]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#9685]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#4235]) +3 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html - shard-dg2: NOTRUN -> [SKIP][338] ([i915#4235]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#5289]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#5289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][342] ([fdo#111615] / [i915#5289]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][343] ([fdo#111615] / [i915#5289]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#4235] / [i915#5190]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#3555]) +12 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][346] ([i915#3555]) +7 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][347] ([i915#5465]) +1 other test fail [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#8623]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#8623]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8623]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8808]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#2437]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][354] ([fdo#109271] / [i915#2437]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#2437]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][356] ([i915#2437]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#2437] / [i915#9412]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#2437] / [i915#9412]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][363] ([fdo#109289]) +6 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][364] ([i915#2436]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#2436]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#7387]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#8440]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [FAIL][368] ([i915#9593]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#8516]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#8516]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][371] ([i915#5608] / [i915#8516]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#8516]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][373] ([i915#8516]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-tglu: NOTRUN -> [SKIP][374] ([fdo#109291]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][375] ([fdo#109291]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@prime_udl.html - shard-rkl: NOTRUN -> [SKIP][376] ([fdo#109291]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][377] ([fdo#109295] / [i915#3291] / [i915#3708]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#3708] / [i915#4077]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][379] ([fdo#109295] / [fdo#111656] / [i915#3708]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][381] ([fdo#109295] / [fdo#111656]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][383] ([i915#3708]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][384] ([i915#3708]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][385] ([i915#9781]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][386] ([i915#9781]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#2575]) +19 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][388] ([fdo#109315]) +25 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#2575]) +19 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-tglu: NOTRUN -> [SKIP][390] ([fdo#109315] / [i915#2575]) +17 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#2575]) +22 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][392] ([i915#7711]) +10 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][393] ([i915#7711]) +11 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#7711]) +13 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#7711]) +13 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-tglu: NOTRUN -> [SKIP][396] ([i915#2575]) +9 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][397] ([i915#2846]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][399] ([i915#7790]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@i915_pm_rps@reset.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@guc_hang: - shard-mtlp: [DMESG-FAIL][401] -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@guc_hang.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@guc_hang.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][403] ([i915#5138]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][405] ([i915#3743]) -> [PASS][406] +2 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][407] ([i915#6880]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][409] ([fdo#109271]) -> [PASS][410] +8 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][411] ([i915#9295]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][413] ([i915#4349]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@kms_content_protection@type1: - shard-snb: [INCOMPLETE][415] -> [SKIP][416] ([fdo#109271]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_content_protection@type1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][417] ([i915#3361]) -> [FAIL][418] ([i915#9295]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][419] ([i915#9351]) -> [INCOMPLETE][420] ([i915#5493]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html [-- Attachment #2: Type: text/html, Size: 119571 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 14:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-07 14:16 ` Kamil Konieczny 2023-12-08 13:57 ` Illipilli, TejasreeX 0 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-12-07 14:16 UTC (permalink / raw) To: igt-dev; +Cc: lgci.bug.filing, I915-ci-infra, Matthew Auld Hi, this are unrelated to Xe test. Regards, Kamil On 2023-12-06 at 14:36:08 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_pat: limit number of dynamic tests > URL : https://patchwork.freedesktop.org/series/127429/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7623_full -> IGTPW_10352_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10352_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10352_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_10352/index.html > > Participating hosts (8 -> 7) > ------------------------------ > > Missing (1): shard-glk-0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10352_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_lmem_swapping@heavy-verify-random@lmem0: > - shard-dg2: NOTRUN -> [ABORT][1] +4 other tests abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html > - shard-dg1: NOTRUN -> [ABORT][2] +4 other tests abort > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html > > * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: > - shard-tglu: NOTRUN -> [WARN][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html > > * igt@i915_selftest@live@gt_lrc: > - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gt_lrc.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gt_lrc.html > > * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > - shard-dg2: NOTRUN -> [SKIP][6] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html > > * igt@kms_pm_backlight@basic-brightness: > - shard-tglu: NOTRUN -> [SKIP][7] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html > > > #### Warnings #### > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: [ABORT][8] -> [INCOMPLETE][9] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_10352_full that come from known issues: > [...cut...] > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [igt-dev] ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests 2023-12-07 14:16 ` Kamil Konieczny @ 2023-12-08 13:57 ` Illipilli, TejasreeX 0 siblings, 0 replies; 11+ messages in thread From: Illipilli, TejasreeX @ 2023-12-08 13:57 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: LGCI Bug Filing, I915-ci-infra@lists.freedesktop.org, Auld, Matthew Hi, https://patchwork.freedesktop.org/series/127429/ - Re-reported Thanks, Tejasree -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Thursday, December 7, 2023 7:47 PM To: igt-dev@lists.freedesktop.org Cc: Auld, Matthew <matthew.auld@intel.com>; I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests Hi, this are unrelated to Xe test. Regards, Kamil On 2023-12-06 at 14:36:08 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_pat: limit number of dynamic tests > URL : https://patchwork.freedesktop.org/series/127429/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7623_full -> IGTPW_10352_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10352_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10352_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_10352/index.html > > Participating hosts (8 -> 7) > ------------------------------ > > Missing (1): shard-glk-0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10352_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_lmem_swapping@heavy-verify-random@lmem0: > - shard-dg2: NOTRUN -> [ABORT][1] +4 other tests abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html > - shard-dg1: NOTRUN -> [ABORT][2] +4 other tests abort > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@ > gem_lmem_swapping@heavy-verify-random@lmem0.html > > * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: > - shard-tglu: NOTRUN -> [WARN][3] > [3]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@ > i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html > > * igt@i915_selftest@live@gt_lrc: > - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gt_lrc.html > [5]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@ > i915_selftest@live@gt_lrc.html > > * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > - shard-dg2: NOTRUN -> [SKIP][6] > [6]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@k > ms_dirtyfb@drrs-dirtyfb-ioctl.html > > * igt@kms_pm_backlight@basic-brightness: > - shard-tglu: NOTRUN -> [SKIP][7] > [7]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@ > kms_pm_backlight@basic-brightness.html > > > #### Warnings #### > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: [ABORT][8] -> [INCOMPLETE][9] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html > [9]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@i > 915_module_load@reload-with-fault-injection.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_10352_full that come from known issues: > [...cut...] > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (2 preceding siblings ...) 2023-12-06 14:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-07 14:55 ` Kamil Konieczny 2023-12-07 15:16 ` Matthew Auld 2023-12-08 12:56 ` ✗ Fi.CI.IGT: failure for " Patchwork ` (2 subsequent siblings) 6 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-12-07 14:55 UTC (permalink / raw) To: igt-dev; +Cc: Himanshu Girotra, Matthew Auld Hi Matthew, On 2023-12-06 at 12:12:03 +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: > > xe-pat-index@{xelp, xehpc, xelpg, xe2}-{dw, blt, render} build/tests/xe_pat --l pat-index-all userptr-coh-none prime-self-import-coh prime-external-import-coh pat-index-xelp pat-index-xehpc pat-index-xelpg pat-index-xe2 So this should be: pat-index-{xelp, xehpc, xelpg, xe2}@{dw, blt, render} > > Signed-off-by: Matthew Auld <matthew.auld@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; This looks unrelated, please send in separate patch with a similar change below. > + > + 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; Same here, this should be in separate patch. Rest looks ok, I tested it on ats-m. Regards, Kamil > > 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] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests 2023-12-07 14:55 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny @ 2023-12-07 15:16 ` Matthew Auld 0 siblings, 0 replies; 11+ messages in thread From: Matthew Auld @ 2023-12-07 15:16 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Himanshu Girotra On 07/12/2023 14:55, Kamil Konieczny wrote: > Hi Matthew, > On 2023-12-06 at 12:12:03 +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: >> >> xe-pat-index@{xelp, xehpc, xelpg, xe2}-{dw, blt, render} > > build/tests/xe_pat --l > pat-index-all > userptr-coh-none > prime-self-import-coh > prime-external-import-coh > pat-index-xelp > pat-index-xehpc > pat-index-xelpg > pat-index-xe2 > > So this should be: > > pat-index-{xelp, xehpc, xelpg, xe2}@{dw, blt, render} > >> >> Signed-off-by: Matthew Auld <matthew.auld@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; > > This looks unrelated, please send in separate patch with > a similar change below. Previously we could just skip the individual pat-index combination when it was compressed, but that is harder now since skip will incorrectly skip the entire igt_dynamic_f() which has now been moved up several levels in this patch. Same below. > >> + >> + 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; > > Same here, this should be in separate patch. > > Rest looks ok, I tested it on ats-m. Thanks for taking a look. > > Regards, > Kamil > >> >> 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] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (3 preceding siblings ...) 2023-12-07 14:55 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny @ 2023-12-08 12:56 ` Patchwork 2023-12-08 13:40 ` Patchwork 2023-12-08 13:51 ` ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-08 12:56 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests URL : https://patchwork.freedesktop.org/series/127429/ State : failure == Summary == CI Bug Log - changes from IGT_7623_full -> IGTPW_10352_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10352_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10352_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_10352/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10352_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: NOTRUN -> [WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_selftest@live@gt_lrc: - shard-mtlp: [PASS][2] -> [DMESG-WARN][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gt_lrc.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gt_lrc.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html Known issues ------------ Here are the changes found in IGTPW_10352_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@core_hotunplug@unbind-rebind: - shard-snb: NOTRUN -> [ABORT][8] ([i915#8213] / [i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#7701]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7701]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7701]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][13] ([i915#9408]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +21 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +13 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +11 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#7697]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][26] -> [FAIL][27] ([i915#6268]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1099]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/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_10352/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][35] ([i915#5784]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#8555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#6334]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][42] ([i915#6334]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][43] ([i915#9606]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [PASS][45] -> [FAIL][46] ([i915#2842]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][47] ([i915#2842]) +4 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4473] / [i915#4771]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][49] ([i915#2842]) +3 other tests fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#7697]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_exec_gttfill@multigpu-basic.html - shard-rkl: NOTRUN -> [SKIP][54] ([i915#7697]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][55] ([i915#7697]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +13 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +15 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) +15 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281]) +17 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4812]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4860]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4860]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2190]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613] / [i915#7582]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [ABORT][68] ([i915#8668]) +4 other tests abort [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html - shard-dg1: NOTRUN -> [ABORT][69] ([i915#8668]) +4 other tests abort [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4613]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#4613]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#8289]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4077]) +19 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4083]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4083]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4270]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#4270]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +8 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190]) +19 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8411]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3282]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4885]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4885]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][94] ([i915#5889]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4077]) +19 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4079]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4079]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4879]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4879]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4879]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#110542]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html - shard-tglu: NOTRUN -> [SKIP][102] ([fdo#110542]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3323]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3297]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][109] ([i915#3318]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk2/igt@gem_userptr_blits@vma-merge.html - shard-dg2: NOTRUN -> [FAIL][110] ([i915#3318]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#109289]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen3_render_tiledx_blits.html - shard-dg1: NOTRUN -> [SKIP][112] ([fdo#109289]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#109289]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][114] -> [INCOMPLETE][115] ([i915#5566]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-glk2/igt@gen9_exec_parse@allowed-all.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#2527]) +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#2527]) +11 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][118] ([i915#2527] / [i915#2856]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#2856]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#2856]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4881]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4881]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4881]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#6227]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#8399]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#8399]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][127] ([i915#2681]) +3 other tests warn [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][128] ([i915#3591]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6621]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#8925]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rps@thresholds-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][131] ([i915#8925]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][132] ([i915#8346]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][133] -> [DMESG-FAIL][134] ([i915#9780]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: NOTRUN -> [ABORT][135] ([i915#8213]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-rkl: NOTRUN -> [ABORT][136] ([i915#8213]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html - shard-snb: NOTRUN -> [ABORT][137] ([i915#4817] / [i915#8213] / [i915#8668]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-dg1: NOTRUN -> [ABORT][138] ([i915#4817] / [i915#8213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html - shard-tglu: NOTRUN -> [ABORT][139] ([i915#8213]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-glk: NOTRUN -> [ABORT][140] ([i915#8213] / [i915#8668]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@i915_suspend@basic-s2idle-without-i915.html - shard-mtlp: NOTRUN -> [ABORT][141] ([i915#8213] / [i915#8668]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4215]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4215] / [i915#5190]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4212]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4212]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8709]) +11 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#8709]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#8709]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6228]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6228]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9531]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9531]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][153] ([fdo#109271] / [i915#1769]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#1769] / [i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#1769] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#111615] / [i915#5286]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#5286]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#5286]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#5286]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#4538] / [i915#5286]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][161] -> [FAIL][162] ([i915#5138]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111614] / [i915#3638]) +6 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3638]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#111614]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][166] ([fdo#111614]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#111614]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][168] -> [FAIL][169] ([i915#3743]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#6187]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][171] ([fdo#110723]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5190]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][174] ([fdo#111615]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][175] ([fdo#111615]) +10 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#2705]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2705]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#2705]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#5354] / [i915#6095]) +73 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#5354] / [i915#6095]) +53 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#5354]) +131 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#5354] / [i915#6095]) +40 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#5354] / [i915#6095]) +53 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#5354]) +55 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3742]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4087]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][187] ([fdo#111827]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111827]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_chamelium_color@ctm-red-to-blue.html - shard-tglu: NOTRUN -> [SKIP][189] ([fdo#111827]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#111827]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_chamelium_color@gamma.html - shard-dg1: NOTRUN -> [SKIP][191] ([fdo#111827]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#7828]) +9 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_chamelium_edid@hdmi-mode-timings.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#7828]) +9 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#7828]) +17 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#7828]) +16 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#7828]) +16 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6944]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#9424]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8063] / [i915#9433]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#7118]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#7118]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#7116]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3359]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][206] ([fdo#109279] / [i915#3359]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3359]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3359]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8814]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3359]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3359]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9809]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][214] ([fdo#109274] / [i915#5354]) +8 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][215] ([fdo#109274]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9067]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9067]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#9067]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#4103] / [i915#4213]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9723]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3840] / [i915#9688]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][228] ([fdo#110189] / [i915#3955]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#3469]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3469]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#1839]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9337]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#9337]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#9337]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#9337]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#658]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][239] ([fdo#109274] / [i915#3637] / [i915#3966]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][240] ([fdo#111767] / [i915#3637]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2: NOTRUN -> [SKIP][241] ([fdo#109274] / [fdo#111767]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][242] ([fdo#111767] / [fdo#111825]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][243] ([fdo#111767] / [fdo#111825]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-tglu: NOTRUN -> [SKIP][244] ([fdo#109274] / [fdo#111767] / [i915#3637]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8381]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#8381]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109274] / [i915#3637]) +6 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][248] ([fdo#109274]) +8 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3637]) +6 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#8381]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#2672]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +8 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8810]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][257] ([fdo#109285]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][258] ([fdo#109285]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][259] ([i915#6880]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][260] ([fdo#111825] / [i915#1825]) +52 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-snb: [PASS][261] -> [SKIP][262] ([fdo#109271]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109280]) +30 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][264] ([fdo#111825]) +60 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#5460]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#3458]) +33 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3458]) +32 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][268] ([fdo#111825]) +19 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8708]) +35 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][270] ([fdo#109271]) +318 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9653]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#9653]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#3023]) +36 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#8708]) +12 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#1825]) +31 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][276] ([fdo#109271]) +352 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#8708]) +34 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][278] ([fdo#110189]) +25 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][286] ([fdo#109289]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#7862]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][288] ([i915#4573]) +3 other tests fail [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3582]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#8806]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3555]) +9 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8806]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8806]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9423]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9423]) +5 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#9423]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#5176] / [i915#9423]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#5235]) +15 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#5235]) +9 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#5235]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#5235]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#5235]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#5235]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9812]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#9685]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [FAIL][308] ([i915#9298]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9685]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3361]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9340]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][312] ([i915#9340]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#8430]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][314] ([i915#8430]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][319] -> [SKIP][320] ([i915#9519]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][321] ([fdo#109293] / [fdo#109506]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-dg1: NOTRUN -> [SKIP][322] ([fdo#109293] / [fdo#109506]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#6524]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#6524]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#6524]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][327] ([i915#6524] / [i915#6805]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#9683]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][329] ([fdo#111068] / [i915#9683]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#4348]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][331] ([fdo#109642] / [fdo#111068] / [i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9683]) +6 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][333] ([fdo#111068] / [i915#9683]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#9685]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#4235]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html - shard-dg2: NOTRUN -> [SKIP][336] ([i915#4235]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#5289]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#5289]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][340] ([fdo#111615] / [i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][341] ([fdo#111615] / [i915#5289]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#4235] / [i915#5190]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#3555]) +12 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#3555]) +7 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][345] ([i915#5465]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#8623]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#8623]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][348] ([i915#8623]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8808]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#2437]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#2437]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][352] ([fdo#109271] / [i915#2437]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][355] ([i915#2437]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#2437] / [i915#9412]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#2437] / [i915#9412]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][361] ([fdo#109289]) +6 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#2436]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#7387]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#8440]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [FAIL][366] ([i915#9593]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#8516]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8516]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][369] ([i915#5608] / [i915#8516]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#8516]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#8516]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-tglu: NOTRUN -> [SKIP][372] ([fdo#109291]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][373] ([fdo#109291]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@prime_udl.html - shard-rkl: NOTRUN -> [SKIP][374] ([fdo#109291]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][375] ([fdo#109295] / [i915#3291] / [i915#3708]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#3708] / [i915#4077]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][377] ([fdo#109295] / [fdo#111656] / [i915#3708]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#3708] / [i915#4077]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][379] ([fdo#109295] / [fdo#111656]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][383] ([i915#9781]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][384] ([i915#9781]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#2575]) +19 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][386] ([fdo#109315]) +25 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][387] ([i915#2575]) +19 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-tglu: NOTRUN -> [SKIP][388] ([fdo#109315] / [i915#2575]) +17 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#2575]) +22 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][390] ([i915#7711]) +10 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][391] ([i915#7711]) +11 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#7711]) +13 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#7711]) +13 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-tglu: NOTRUN -> [SKIP][394] ([i915#2575]) +9 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][395] ([i915#2846]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][397] ([i915#7790]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@i915_pm_rps@reset.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@guc_hang: - shard-mtlp: [DMESG-FAIL][399] -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@guc_hang.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@guc_hang.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][401] ([i915#5138]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][403] ([i915#3743]) -> [PASS][404] +2 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][405] ([i915#6880]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][407] ([fdo#109271]) -> [PASS][408] +8 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][409] ([i915#9295]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][411] ([i915#4349]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][413] ([i915#8668]) -> [INCOMPLETE][414] ([i915#8668]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@type1: - shard-snb: [INCOMPLETE][415] -> [SKIP][416] ([fdo#109271]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_content_protection@type1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][417] ([i915#3361]) -> [FAIL][418] ([i915#9295]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][419] ([i915#9351]) -> [INCOMPLETE][420] ([i915#5493]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https:// == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html [-- Attachment #2: Type: text/html, Size: 119568 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (4 preceding siblings ...) 2023-12-08 12:56 ` ✗ Fi.CI.IGT: failure for " Patchwork @ 2023-12-08 13:40 ` Patchwork 2023-12-08 13:51 ` ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-08 13:40 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests URL : https://patchwork.freedesktop.org/series/127429/ State : failure == Summary == CI Bug Log - changes from IGT_7623_full -> IGTPW_10352_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10352_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10352_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_10352/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10352_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_lrc: - shard-mtlp: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gt_lrc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gt_lrc.html Known issues ------------ Here are the changes found in IGTPW_10352_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@core_hotunplug@unbind-rebind: - shard-snb: NOTRUN -> [ABORT][6] ([i915#8213] / [i915#8668]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#9318]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#7701]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7701]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][11] ([i915#9408]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +21 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +13 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +11 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][24] -> [FAIL][25] ([i915#6268]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1099]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][33] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][34] ([i915#8898]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#6334]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][40] ([i915#6334]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][41] ([i915#9606]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][45] ([i915#2842]) +4 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4473] / [i915#4771]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][47] ([i915#2842]) +3 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#7697]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_exec_gttfill@multigpu-basic.html - shard-rkl: NOTRUN -> [SKIP][52] ([i915#7697]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][53] ([i915#7697]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3281]) +13 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +15 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3281]) +15 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +17 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4812]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#2190]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613] / [i915#7582]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [ABORT][66] ([i915#8668]) +4 other tests abort [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html - shard-dg1: NOTRUN -> [ABORT][67] ([i915#8668]) +4 other tests abort [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#4613]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#8289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +19 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4083]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +8 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190]) +19 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#8411]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4885]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4885]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#5889]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4077]) +19 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4079]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4079]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4879]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4879]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4879]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#110542]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html - shard-tglu: NOTRUN -> [SKIP][100] ([fdo#110542]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3323]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3297]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3297]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][107] ([i915#3318]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk2/igt@gem_userptr_blits@vma-merge.html - shard-dg2: NOTRUN -> [FAIL][108] ([i915#3318]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109289]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen3_render_tiledx_blits.html - shard-dg1: NOTRUN -> [SKIP][110] ([fdo#109289]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#109289]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#5566]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-glk2/igt@gen9_exec_parse@allowed-all.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#2527]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#2527]) +11 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#2856]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#2856]) +11 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#4881]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4881]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4881]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6227]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#8399]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][124] ([i915#8399]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][125] ([i915#2681]) +4 other tests warn [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][126] ([i915#3591]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6621]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#8925]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rps@thresholds-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][129] ([i915#8925]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][130] ([i915#8346]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][131] -> [DMESG-FAIL][132] ([i915#9780]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: NOTRUN -> [ABORT][133] ([i915#8213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-rkl: NOTRUN -> [ABORT][134] ([i915#8213]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html - shard-snb: NOTRUN -> [ABORT][135] ([i915#4817] / [i915#8213] / [i915#8668]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-dg1: NOTRUN -> [ABORT][136] ([i915#4817] / [i915#8213]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html - shard-tglu: NOTRUN -> [ABORT][137] ([i915#8213]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-glk: NOTRUN -> [ABORT][138] ([i915#8213] / [i915#8668]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@i915_suspend@basic-s2idle-without-i915.html - shard-mtlp: NOTRUN -> [ABORT][139] ([i915#8213] / [i915#8668]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4215]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4215] / [i915#5190]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4212]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4212]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#8709]) +11 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#8709]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#8709]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#6228]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6228]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#9531]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#9531]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][151] ([fdo#109271] / [i915#1769]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][152] ([i915#1769] / [i915#3555]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][154] ([fdo#111615] / [i915#5286]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#5286]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#5286]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#5286]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5286]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#5138]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111614] / [i915#3638]) +6 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3638]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#111614]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111614]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#111614]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][166] -> [FAIL][167] ([i915#3743]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6187]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#110723]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4538] / [i915#5190]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4538]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#111615]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][173] ([fdo#111615]) +10 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2705]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2705]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2705]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#5354] / [i915#6095]) +73 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#5354] / [i915#6095]) +53 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5354]) +131 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#5354] / [i915#6095]) +40 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#5354] / [i915#6095]) +53 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#5354]) +55 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3742]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_chamelium_color@ctm-red-to-blue.html - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#111827]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][188] ([fdo#111827]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_chamelium_color@gamma.html - shard-dg1: NOTRUN -> [SKIP][189] ([fdo#111827]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#7828]) +9 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_chamelium_edid@hdmi-mode-timings.html - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +9 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#7828]) +17 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#7828]) +16 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#7828]) +16 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#6944]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#9424]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8063] / [i915#9433]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7118]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#7118]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#7116]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3359]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#109279] / [i915#3359]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3359]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3359]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8814]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3359]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3359]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#9809]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274] / [i915#5354]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109274]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9067]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#9067]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#9067]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4103] / [i915#4213]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#4103] / [i915#4213]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9833]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9723]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3840] / [i915#9688]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#110189] / [i915#3955]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3469]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#3469]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#1839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9337]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#9337]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#9337]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9337]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109274] / [i915#3637] / [i915#3966]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][239] ([fdo#111767] / [i915#3637]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109274] / [fdo#111767]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111767] / [fdo#111825]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][242] ([fdo#111767] / [fdo#111825]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109274] / [fdo#111767] / [i915#3637]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8381]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8381]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109274] / [i915#3637]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][247] ([fdo#109274]) +8 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3637]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8381]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#2672]) +8 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8810]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][256] ([fdo#109285]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][257] ([fdo#109285]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][258] ([i915#6880]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][259] ([fdo#111825] / [i915#1825]) +52 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-snb: [PASS][260] -> [SKIP][261] ([fdo#109271]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][262] ([fdo#109280]) +30 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][263] ([fdo#111825]) +60 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#5460]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#3458]) +33 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +32 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][267] ([fdo#111825]) +19 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +35 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][269] ([fdo#109271]) +318 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#9653]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9653]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3023]) +36 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8708]) +12 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#1825]) +31 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][275] ([fdo#109271]) +352 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#8708]) +34 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][277] ([fdo#110189]) +25 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][285] ([fdo#109289]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][286] ([i915#7862]) +1 other test fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#4573]) +3 other tests fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3582]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#8806]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555]) +9 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8806]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8806]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#9423]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#9423]) +5 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#9423]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#5176] / [i915#9423]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#5235]) +15 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#5235]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#5235]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#5235]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#5235]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#5235]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#5354]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9812]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9685]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [FAIL][307] ([i915#9298]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9685]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3361]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#9340]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9340]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#8430]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#8430]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#9519]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][320] ([fdo#109293] / [fdo#109506]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-dg1: NOTRUN -> [SKIP][321] ([fdo#109293] / [fdo#109506]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#6524]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#6524]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][324] ([i915#6524]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#6524] / [i915#6805]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#9683]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][328] ([fdo#111068] / [i915#9683]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#4348]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][330] ([fdo#109642] / [fdo#111068] / [i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#9683]) +6 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][332] ([fdo#111068] / [i915#9683]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9685]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#4235]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html - shard-dg2: NOTRUN -> [SKIP][335] ([i915#4235]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#5289]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#5289]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][339] ([fdo#111615] / [i915#5289]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][340] ([fdo#111615] / [i915#5289]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#4235] / [i915#5190]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#3555]) +12 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#3555]) +7 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][344] ([i915#5465]) +1 other test fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#8623]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#8623]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8623]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#3555] / [i915#8808]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#2437]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#2437]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][351] ([fdo#109271] / [i915#2437]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#2437]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#2437] / [i915#9412]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][356] ([i915#2437] / [i915#9412]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][360] ([fdo#109289]) +6 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#2436]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#7387]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#8440]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [FAIL][365] ([i915#9593]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#8516]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][367] ([i915#8516]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][368] ([i915#5608] / [i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#8516]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][370] ([i915#8516]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-tglu: NOTRUN -> [SKIP][371] ([fdo#109291]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][372] ([fdo#109291]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@prime_udl.html - shard-rkl: NOTRUN -> [SKIP][373] ([fdo#109291]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][374] ([fdo#109295] / [i915#3291] / [i915#3708]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#3708] / [i915#4077]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][376] ([fdo#109295] / [fdo#111656] / [i915#3708]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#3708] / [i915#4077]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][378] ([fdo#109295] / [fdo#111656]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#3708] / [i915#4077]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3708]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][382] ([i915#9781]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][383] ([i915#9781]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#2575]) +19 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][385] ([fdo#109315]) +25 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#2575]) +19 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-tglu: NOTRUN -> [SKIP][387] ([fdo#109315] / [i915#2575]) +17 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#2575]) +22 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#7711]) +10 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#7711]) +11 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#7711]) +13 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#7711]) +13 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-tglu: NOTRUN -> [SKIP][393] ([i915#2575]) +9 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][394] ([i915#2846]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][396] ([i915#7790]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@i915_pm_rps@reset.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@guc_hang: - shard-mtlp: [DMESG-FAIL][398] -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@guc_hang.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@guc_hang.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][400] ([i915#5138]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][402] ([i915#3743]) -> [PASS][403] +2 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][404] ([i915#6880]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][406] ([fdo#109271]) -> [PASS][407] +8 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][408] ([i915#9295]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][410] ([i915#4349]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][412] ([i915#8668]) -> [INCOMPLETE][413] ([i915#8668]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@type1: - shard-snb: [INCOMPLETE][414] -> [SKIP][415] ([fdo#109271]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_content_protection@type1.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][416] ([i915#3361]) -> [FAIL][417] ([i915#9295]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][418] ([i915#9351]) -> [INCOMPLETE][419] ([i915#5493]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html [-- Attachment #2: Type: text/html, Size: 119912 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.IGT: success for tests/intel/xe_pat: limit number of dynamic tests 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld ` (5 preceding siblings ...) 2023-12-08 13:40 ` Patchwork @ 2023-12-08 13:51 ` Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-08 13:51 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: tests/intel/xe_pat: limit number of dynamic tests URL : https://patchwork.freedesktop.org/series/127429/ State : success == Summary == CI Bug Log - changes from IGT_7623_full -> IGTPW_10352_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk-0 Known issues ------------ Here are the changes found in IGTPW_10352_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@core_hotunplug@unbind-rebind: - shard-snb: NOTRUN -> [ABORT][4] ([i915#8213] / [i915#8668]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][9] ([i915#9408]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +21 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +13 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][22] -> [FAIL][23] ([i915#6268]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][32] ([i915#8898]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8555]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#6334]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][39] ([i915#9606]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) +4 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4473] / [i915#4771]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][45] ([i915#2842]) +3 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#7697]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/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_10352/shard-rkl-5/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][51] ([i915#7697]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +13 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +15 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +15 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +17 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#2190]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613] / [i915#7582]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [ABORT][64] ([i915#8668]) +4 other tests abort [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html - shard-dg1: NOTRUN -> [ABORT][65] ([i915#8668]) +4 other tests abort [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#8289]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +19 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +10 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#4270]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4270]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190]) +19 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4885]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4885]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][90] ([i915#5889]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4077]) +19 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4079]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4079]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4879]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4879]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4879]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][97] ([fdo#110542]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html - shard-tglu: NOTRUN -> [SKIP][98] ([fdo#110542]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3323]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3297]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-rkl: NOTRUN -> [SKIP][102] ([i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][105] ([i915#3318]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk2/igt@gem_userptr_blits@vma-merge.html - shard-dg2: NOTRUN -> [FAIL][106] ([i915#3318]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#109289]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen3_render_tiledx_blits.html - shard-dg1: NOTRUN -> [SKIP][108] ([fdo#109289]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#109289]) +6 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][110] -> [INCOMPLETE][111] ([i915#5566]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-glk2/igt@gen9_exec_parse@allowed-all.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#2527]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#2527]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#2856]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#2856]) +11 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4881]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4881]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4881]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#6227]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#8399]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#8399]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][123] ([i915#2681]) +4 other tests warn [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][124] ([i915#3591]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6621]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#8925]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_pm_rps@thresholds-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][127] ([i915#8925]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][128] ([i915#8346]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][129] -> [DMESG-FAIL][130] ([i915#9780]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@gt_lrc: - shard-mtlp: [PASS][131] -> [DMESG-WARN][132] ([i915#9832]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@gt_lrc.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@gt_lrc.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: NOTRUN -> [ABORT][133] ([i915#8213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-rkl: NOTRUN -> [ABORT][134] ([i915#8213]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html - shard-snb: NOTRUN -> [ABORT][135] ([i915#4817] / [i915#8213] / [i915#8668]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-dg1: NOTRUN -> [ABORT][136] ([i915#4817] / [i915#8213]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html - shard-tglu: NOTRUN -> [ABORT][137] ([i915#8213]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@i915_suspend@basic-s2idle-without-i915.html - shard-glk: NOTRUN -> [ABORT][138] ([i915#8213] / [i915#8668]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@i915_suspend@basic-s2idle-without-i915.html - shard-mtlp: NOTRUN -> [ABORT][139] ([i915#8213] / [i915#8668]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4215]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4215] / [i915#5190]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4212]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4212]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#8709]) +11 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#8709]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#8709]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#6228]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6228]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#9531]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#9531]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][151] ([fdo#109271] / [i915#1769]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][152] ([i915#1769] / [i915#3555]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][154] ([fdo#111615] / [i915#5286]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#5286]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#5286]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#5286]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5286]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#5138]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111614] / [i915#3638]) +6 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3638]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#111614]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111614]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#111614]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][166] -> [FAIL][167] ([i915#3743]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6187]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#110723]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4538] / [i915#5190]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4538]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#111615]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][173] ([fdo#111615]) +10 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2705]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2705]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2705]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#5354] / [i915#6095]) +73 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#5354] / [i915#6095]) +53 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5354]) +131 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#5354] / [i915#6095]) +40 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#5354] / [i915#6095]) +53 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#5354]) +55 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3742]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_chamelium_color@ctm-red-to-blue.html - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#111827]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][188] ([fdo#111827]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_chamelium_color@gamma.html - shard-dg1: NOTRUN -> [SKIP][189] ([fdo#111827]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#7828]) +9 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_chamelium_edid@hdmi-mode-timings.html - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +9 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#7828]) +17 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#7828]) +16 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#7828]) +16 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#6944]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#9424]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8063] / [i915#9433]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7118]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#7118]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#7116]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3359]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#109279] / [i915#3359]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3359]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3359]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8814]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3359]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3359]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#9809]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274] / [i915#5354]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109274]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9067]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#9067]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#9067]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4103] / [i915#4213]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#4103] / [i915#4213]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9833]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9723]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3840] / [i915#9688]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#110189] / [i915#3955]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3469]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#3469]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#1839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9337]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#9337]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#9337]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9337]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109274] / [i915#3637] / [i915#3966]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][239] ([fdo#111767] / [i915#3637]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109274] / [fdo#111767]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111767] / [fdo#111825]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][242] ([fdo#111767] / [fdo#111825]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109274] / [fdo#111767] / [i915#3637]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8381]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8381]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109274] / [i915#3637]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][247] ([fdo#109274]) +8 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3637]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8381]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#2672]) +8 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8810]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][256] ([fdo#109285]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][257] ([fdo#109285]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][258] ([i915#6880]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][259] ([fdo#111825] / [i915#1825]) +52 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-snb: [PASS][260] -> [SKIP][261] ([fdo#109271]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][262] ([fdo#109280]) +30 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][263] ([fdo#111825]) +60 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#5460]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#3458]) +33 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +32 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][267] ([fdo#111825]) +19 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +35 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][269] ([fdo#109271]) +318 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#9653]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9653]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3023]) +36 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8708]) +12 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#1825]) +31 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][275] ([fdo#109271]) +352 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#8708]) +34 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][277] ([fdo#110189]) +25 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][285] ([fdo#109289]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][286] ([i915#7862]) +1 other test fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#4573]) +3 other tests fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3582]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#8806]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555]) +9 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8806]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8806]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#9423]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#9423]) +5 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#9423]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#5176] / [i915#9423]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#5235]) +15 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#5235]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#5235]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#5235]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#5235]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#5235]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#5354]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9812]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9685]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [FAIL][307] ([i915#9298]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9685]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3361]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#9340]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9340]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#8430]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#8430]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#9519]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][320] ([fdo#109293] / [fdo#109506]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-dg1: NOTRUN -> [SKIP][321] ([fdo#109293] / [fdo#109506]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#6524]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#6524]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][324] ([i915#6524]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#6524] / [i915#6805]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#9683]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][328] ([fdo#111068] / [i915#9683]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#4348]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][330] ([fdo#109642] / [fdo#111068] / [i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#9683]) +6 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][332] ([fdo#111068] / [i915#9683]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9685]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#4235]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html - shard-dg2: NOTRUN -> [SKIP][335] ([i915#4235]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#5289]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#5289]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][339] ([fdo#111615] / [i915#5289]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][340] ([fdo#111615] / [i915#5289]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#4235] / [i915#5190]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#3555]) +12 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#3555]) +7 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][344] ([i915#5465]) +1 other test fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#8623]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#8623]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8623]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#3555] / [i915#8808]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#2437]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#2437]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][351] ([fdo#109271] / [i915#2437]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-glk6/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#2437]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#2437] / [i915#9412]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][356] ([i915#2437] / [i915#9412]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][360] ([fdo#109289]) +6 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#2436]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#7387]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#8440]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [FAIL][365] ([i915#9593]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#8516]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][367] ([i915#8516]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][368] ([i915#5608] / [i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#8516]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][370] ([i915#8516]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-tglu: NOTRUN -> [SKIP][371] ([fdo#109291]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-5/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][372] ([fdo#109291]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@prime_udl.html - shard-rkl: NOTRUN -> [SKIP][373] ([fdo#109291]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-2/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][374] ([fdo#109295] / [i915#3291] / [i915#3708]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#3708] / [i915#4077]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][376] ([fdo#109295] / [fdo#111656] / [i915#3708]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#3708] / [i915#4077]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][378] ([fdo#109295] / [fdo#111656]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#3708] / [i915#4077]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3708]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][382] ([i915#9781]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-10/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][383] ([i915#9781]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-12/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#2575]) +19 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][385] ([fdo#109315]) +25 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#2575]) +19 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-tglu: NOTRUN -> [SKIP][387] ([fdo#109315] / [i915#2575]) +17 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-9/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#2575]) +22 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#7711]) +10 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#7711]) +11 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#7711]) +13 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-7/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#7711]) +13 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-tglu: NOTRUN -> [SKIP][393] ([i915#2575]) +9 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-3/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][394] ([i915#2846]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][396] ([i915#7790]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@i915_pm_rps@reset.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@guc_hang: - shard-mtlp: [DMESG-FAIL][398] -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-7/igt@i915_selftest@live@guc_hang.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@i915_selftest@live@guc_hang.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][400] ([i915#5138]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][402] ([i915#3743]) -> [PASS][403] +2 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][404] ([i915#6880]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][406] ([fdo#109271]) -> [PASS][407] +8 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][408] ([i915#9295]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][410] ([i915#4349]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][412] ([i915#8668]) -> [INCOMPLETE][413] ([i915#8668]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@type1: - shard-snb: [INCOMPLETE][414] -> [SKIP][415] ([fdo#109271]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-snb7/igt@kms_content_protection@type1.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][416] ([i915#3361]) -> [FAIL][417] ([i915#9295]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][418] ([i915#9351]) -> [INCOMPLETE][419] ([i915#5493]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7623/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.free == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10352/index.html [-- Attachment #2: Type: text/html, Size: 120621 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-12-08 13:57 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-06 12:12 [igt-dev] [PATCH i-g-t] tests/intel/xe_pat: limit number of dynamic tests Matthew Auld 2023-12-06 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-12-06 14:08 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-06 14:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-07 14:16 ` Kamil Konieczny 2023-12-08 13:57 ` Illipilli, TejasreeX 2023-12-07 14:55 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 2023-12-07 15:16 ` Matthew Auld 2023-12-08 12:56 ` ✗ Fi.CI.IGT: failure for " Patchwork 2023-12-08 13:40 ` Patchwork 2023-12-08 13:51 ` ✓ 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