* [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste
@ 2024-03-29 21:14 Lucas De Marchi
2024-03-29 22:15 ` ✗ GitLab.Pipeline: warning for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Lucas De Marchi @ 2024-03-29 21:14 UTC (permalink / raw)
To: igt-dev; +Cc: Matt Roper, Matthew Brost, Lucas De Marchi
Replace copy & paste by a loop, so we avoid issues like the one fixed by
commit 27c06a4106e1 ("tests/xe_exec_threads: Fill in GT field for second
balancer thread").
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/intel/xe_exec_threads.c | 36 ++++++-----------------------------
1 file changed, 6 insertions(+), 30 deletions(-)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 05ea1d35a..e9588f9b9 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -1030,6 +1030,7 @@ static void threads(int fd, int flags)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class) {
int num_placements = 0;
+ int *data_flags = (int[]){ VIRTUAL, PARALLEL, -1 };
xe_for_each_engine(fd, hwe) {
if (hwe->engine_class != class ||
@@ -1038,36 +1039,10 @@ static void threads(int fd, int flags)
++num_placements;
}
- if (num_placements > 1) {
- threads_data[i].mutex = &mutex;
- threads_data[i].cond = &cond;
- if (flags & SHARED_VM)
- threads_data[i].addr = addr |
- (i << ADDRESS_SHIFT);
- else
- threads_data[i].addr = addr;
- threads_data[i].userptr = userptr |
- (i << ADDRESS_SHIFT);
- if (flags & FD)
- threads_data[i].fd = 0;
- else
- threads_data[i].fd = fd;
- threads_data[i].gt = gt;
- threads_data[i].vm_legacy_mode =
- vm_legacy_mode;
- threads_data[i].class = class;
- threads_data[i].n_exec_queue = N_EXEC_QUEUE;
- threads_data[i].n_exec = N_EXEC;
- threads_data[i].flags = flags;
- threads_data[i].flags &= ~BALANCER;
- threads_data[i].flags |= VIRTUAL;
- threads_data[i].go = &go;
-
- ++n_threads;
- pthread_create(&threads_data[i].thread, 0,
- thread, &threads_data[i]);
- ++i;
+ if (num_placements <= 1)
+ continue;
+ while (*data_flags >= 0) {
threads_data[i].mutex = &mutex;
threads_data[i].cond = &cond;
if (flags & SHARED_VM)
@@ -1089,13 +1064,14 @@ static void threads(int fd, int flags)
threads_data[i].n_exec = N_EXEC;
threads_data[i].flags = flags;
threads_data[i].flags &= ~BALANCER;
- threads_data[i].flags |= PARALLEL;
+ threads_data[i].flags |= *data_flags;
threads_data[i].go = &go;
++n_threads;
pthread_create(&threads_data[i].thread, 0,
thread, &threads_data[i]);
++i;
+ data_flags++;
}
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✗ GitLab.Pipeline: warning for tests/xe_exec_threads: Reduce copy & paste 2024-03-29 21:14 [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste Lucas De Marchi @ 2024-03-29 22:15 ` Patchwork 2024-03-29 22:41 ` ✓ CI.xeBAT: success " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-03-29 22:15 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev == Series Details == Series: tests/xe_exec_threads: Reduce copy & paste URL : https://patchwork.freedesktop.org/series/131831/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1141005 for the overview. build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/56973610): Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 537e0979 as detached HEAD (ref is intel/IGTPW_10954)... Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1711750113:get_sources section_start:1711750113:step_script Executing "step_script" stage of the job script Using docker image sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf:commit-537e09794c73551825b8534651123f68551cabf3 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf@sha256:3a0ffeb305cdc6ef081dde81d86afee76102e74f76c0f7bd5685fc2457ec707b ... section_end:1711750116:step_script section_start:1711750116:cleanup_file_variables Cleaning up project directory and file based variables section_end:1711750117:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8: image not known (docker.go:570:0s) build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/56973603): section_start:1711750108:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 537e0979 as detached HEAD (ref is intel/IGTPW_10954)... Skipping Git submodules setup section_end:1711750113:get_sources section_start:1711750113:step_script Executing "step_script" stage of the job script Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-537e09794c73551825b8534651123f68551cabf3 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1711750116:step_script section_start:1711750116:cleanup_file_variables Cleaning up project directory and file based variables section_end:1711750117:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f: image not known (docker.go:570:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1141005 ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_exec_threads: Reduce copy & paste 2024-03-29 21:14 [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste Lucas De Marchi 2024-03-29 22:15 ` ✗ GitLab.Pipeline: warning for " Patchwork @ 2024-03-29 22:41 ` Patchwork 2024-03-29 22:46 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-03-29 22:41 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1726 bytes --] == Series Details == Series: tests/xe_exec_threads: Reduce copy & paste URL : https://patchwork.freedesktop.org/series/131831/ State : success == Summary == CI Bug Log - changes from XEIGT_7791_BAT -> XEIGTPW_10954_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10954_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_gt_freq@freq_basic_api: - {bat-lnl-1}: [FAIL][1] ([Intel XE#1415]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7791/bat-lnl-1/igt@xe_gt_freq@freq_basic_api.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10954/bat-lnl-1/igt@xe_gt_freq@freq_basic_api.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1415 Build changes ------------- * IGT: IGT_7791 -> IGTPW_10954 * Linux: xe-1016-96000ec64d7e08436f2cafc89711c907576710f4 -> xe-1018-b334e21cd00347d48ee5e8e8ab0a69c91f97b036 IGTPW_10954: 10954 IGT_7791: 7d7be3a56e299d9ad14ac2c6535a7e14b4cfd4df @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1016-96000ec64d7e08436f2cafc89711c907576710f4: 96000ec64d7e08436f2cafc89711c907576710f4 xe-1018-b334e21cd00347d48ee5e8e8ab0a69c91f97b036: b334e21cd00347d48ee5e8e8ab0a69c91f97b036 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10954/index.html [-- Attachment #2: Type: text/html, Size: 2316 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_exec_threads: Reduce copy & paste 2024-03-29 21:14 [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste Lucas De Marchi 2024-03-29 22:15 ` ✗ GitLab.Pipeline: warning for " Patchwork 2024-03-29 22:41 ` ✓ CI.xeBAT: success " Patchwork @ 2024-03-29 22:46 ` Patchwork 2024-03-29 23:36 ` [PATCH i-g-t] " Matthew Brost 2024-03-30 23:26 ` ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-03-29 22:46 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5392 bytes --] == Series Details == Series: tests/xe_exec_threads: Reduce copy & paste URL : https://patchwork.freedesktop.org/series/131831/ State : success == Summary == CI Bug Log - changes from CI_DRM_14509 -> IGTPW_10954 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/index.html Participating hosts (39 -> 33) ------------------------------ Missing (6): bat-arls-4 bat-kbl-2 fi-snb-2520m bat-dg2-11 fi-bsw-nick bat-arls-3 Known issues ------------ Here are the changes found in IGTPW_10954 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-tgl-1115g4: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html - fi-tgl-1115g4: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-tgl-1115g4: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@guc_hang: - bat-dg2-9: [PASS][6] -> [ABORT][7] ([i915#10366]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/bat-dg2-9/igt@i915_selftest@live@guc_hang.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/bat-dg2-9/igt@i915_selftest@live@guc_hang.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-tgl-1115g4: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - fi-tgl-1115g4: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-tgl-1115g4: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-cfl-8109u: NOTRUN -> [SKIP][11] +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html - fi-tgl-1115g4: NOTRUN -> [SKIP][12] ([i915#9812]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-tgl-1115g4: NOTRUN -> [SKIP][13] ([i915#9732]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-tgl-1115g4: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/fi-tgl-1115g4/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - bat-adlp-11: [ABORT][15] ([i915#10021]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/bat-adlp-11/igt@i915_selftest@live@hangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/bat-adlp-11/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10021]: https://gitlab.freedesktop.org/drm/intel/issues/10021 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7791 -> IGTPW_10954 CI-20190529: 20190529 CI_DRM_14509: b334e21cd00347d48ee5e8e8ab0a69c91f97b036 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10954: 10954 IGT_7791: 7d7be3a56e299d9ad14ac2c6535a7e14b4cfd4df @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/index.html [-- Attachment #2: Type: text/html, Size: 6437 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste 2024-03-29 21:14 [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste Lucas De Marchi ` (2 preceding siblings ...) 2024-03-29 22:46 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-03-29 23:36 ` Matthew Brost 2024-03-30 23:26 ` ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Matthew Brost @ 2024-03-29 23:36 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev, Matt Roper On Fri, Mar 29, 2024 at 02:14:49PM -0700, Lucas De Marchi wrote: > Replace copy & paste by a loop, so we avoid issues like the one fixed by > commit 27c06a4106e1 ("tests/xe_exec_threads: Fill in GT field for second > balancer thread"). > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> > --- > tests/intel/xe_exec_threads.c | 36 ++++++----------------------------- > 1 file changed, 6 insertions(+), 30 deletions(-) > > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index 05ea1d35a..e9588f9b9 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -1030,6 +1030,7 @@ static void threads(int fd, int flags) > xe_for_each_gt(fd, gt) > xe_for_each_engine_class(class) { > int num_placements = 0; > + int *data_flags = (int[]){ VIRTUAL, PARALLEL, -1 }; > > xe_for_each_engine(fd, hwe) { > if (hwe->engine_class != class || > @@ -1038,36 +1039,10 @@ static void threads(int fd, int flags) > ++num_placements; > } > > - if (num_placements > 1) { > - threads_data[i].mutex = &mutex; > - threads_data[i].cond = &cond; > - if (flags & SHARED_VM) > - threads_data[i].addr = addr | > - (i << ADDRESS_SHIFT); > - else > - threads_data[i].addr = addr; > - threads_data[i].userptr = userptr | > - (i << ADDRESS_SHIFT); > - if (flags & FD) > - threads_data[i].fd = 0; > - else > - threads_data[i].fd = fd; > - threads_data[i].gt = gt; > - threads_data[i].vm_legacy_mode = > - vm_legacy_mode; > - threads_data[i].class = class; > - threads_data[i].n_exec_queue = N_EXEC_QUEUE; > - threads_data[i].n_exec = N_EXEC; > - threads_data[i].flags = flags; > - threads_data[i].flags &= ~BALANCER; > - threads_data[i].flags |= VIRTUAL; > - threads_data[i].go = &go; > - > - ++n_threads; > - pthread_create(&threads_data[i].thread, 0, > - thread, &threads_data[i]); > - ++i; > + if (num_placements <= 1) > + continue; > > + while (*data_flags >= 0) { > threads_data[i].mutex = &mutex; > threads_data[i].cond = &cond; > if (flags & SHARED_VM) > @@ -1089,13 +1064,14 @@ static void threads(int fd, int flags) > threads_data[i].n_exec = N_EXEC; > threads_data[i].flags = flags; > threads_data[i].flags &= ~BALANCER; > - threads_data[i].flags |= PARALLEL; > + threads_data[i].flags |= *data_flags; > threads_data[i].go = &go; > > ++n_threads; > pthread_create(&threads_data[i].thread, 0, > thread, &threads_data[i]); > ++i; > + data_flags++; > } > } > } > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_exec_threads: Reduce copy & paste 2024-03-29 21:14 [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste Lucas De Marchi ` (3 preceding siblings ...) 2024-03-29 23:36 ` [PATCH i-g-t] " Matthew Brost @ 2024-03-30 23:26 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-03-30 23:26 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 96192 bytes --] == Series Details == Series: tests/xe_exec_threads: Reduce copy & paste URL : https://patchwork.freedesktop.org/series/131831/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14509_full -> IGTPW_10954_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10954_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10954_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_10954/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10954_full: ### IGT changes ### #### Possible regressions #### * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-14/igt@kms_fbcon_fbt@fbc-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_plane@pixel-format-source-clamping@pipe-b: - shard-mtlp: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-mtlp-5/igt@kms_plane@pixel-format-source-clamping@pipe-b.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b.html * igt@perf@polling@0-rcs0: - shard-rkl: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-4/igt@perf@polling@0-rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@perf@polling@0-rcs0.html Known issues ------------ Here are the changes found in IGTPW_10954_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-5/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#7701]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7701]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7701]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#7701]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][16] ([i915#7701]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-10/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +14 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-14/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +39 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8414]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4873]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-3/igt@gem_caching@writes.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-3/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#9323]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6335]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [INCOMPLETE][26] ([i915#9364]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][27] -> [FAIL][28] ([i915#6268]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-stop.html - shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-tglu: [PASS][34] -> [INCOMPLETE][35] ([i915#10513]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-tglu-8/igt@gem_eio@kms.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-4/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][41] ([i915#6117]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#6334]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4473] / [i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: NOTRUN -> [FAIL][46] ([i915#2842]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-13/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +9 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#2190]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@gem_lmem_swapping@heavy-multi.html - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: [PASS][62] -> [FAIL][63] ([i915#10378]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html - shard-dg1: NOTRUN -> [FAIL][64] ([i915#10378]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk9/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4565]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@gem_mmap@bad-object.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +10 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +16 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +12 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_pread@snoop.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#4270]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@gem_set_tiling_vs_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@gem_set_tiling_vs_pwrite.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4885]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4958]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][102] -> [INCOMPLETE][103] ([i915#1982] / [i915#9820] / [i915#9849]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-tglu: NOTRUN -> [WARN][104] ([i915#2681]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#8925]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8437]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5723]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@sysfs-reader: - shard-dg1: [PASS][112] -> [FAIL][113] ([i915#10031]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-14/igt@i915_suspend@sysfs-reader.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#7707]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#5190]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#8709]) +11 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][119] ([i915#9531]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][120] ([i915#9531]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][123] +13 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][127] +23 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +10 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][132] -> [FAIL][133] ([i915#3743]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#2705]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#6095]) +23 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-5/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10278]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#10278]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html - shard-tglu: NOTRUN -> [SKIP][140] ([i915#10278]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +197 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +67 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +99 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +15 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4087]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +12 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#7828]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7828]) +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_content_protection@lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3555]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3359]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3359]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3359]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][169] +55 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#4103]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][172] +54 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9067]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#9067]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#4103]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#9723]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8588]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#8588]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#8588]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8588]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3804]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#1257]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#8812]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3840] / [i915#9688]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3840] / [i915#9053]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [PASS][191] -> [INCOMPLETE][192] ([i915#8797] / [i915#9878]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-tglu-5/igt@kms_fbcon_fbt@fbc-suspend.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3469]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8381]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8381]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3637] / [i915#3966]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-10/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9934]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@blocking-wf_vblank@b-vga1: - shard-snb: [PASS][203] -> [FAIL][204] ([i915#2122]) +3 other tests fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-snb5/igt@kms_flip@blocking-wf_vblank@b-vga1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-snb7/igt@kms_flip@blocking-wf_vblank@b-vga1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8381]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4: - shard-dg1: [PASS][206] -> [FAIL][207] ([i915#2122]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1: - shard-rkl: [PASS][208] -> [FAIL][209] ([i915#2122]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#2672]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#2672]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#2672]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [PASS][216] -> [FAIL][217] ([i915#6880]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8708]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][219] -> [SKIP][220] +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#5354]) +34 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#1825]) +53 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8708]) +16 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#5439]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][225] +35 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][226] +117 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +28 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9766]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9766]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][230] ([i915#9766]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#9766]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#10070]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#10070]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#8708]) +16 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +17 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3458]) +18 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#3458]) +17 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-9/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#1839]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#6301]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#6301]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][244] ([i915#4573]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3582]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354] / [i915#9423]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][247] ([i915#8292]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][248] ([i915#8292]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#9423]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#9423]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9423]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9423]) +11 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#5235]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#5235]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#5235]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#5235]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5235]) +7 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#5235] / [i915#9423]) +19 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#9685]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#9685]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#5978]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [FAIL][262] ([i915#9295]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][263] -> [FAIL][264] ([i915#9295]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3361]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9340]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][267] ([i915#9301]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#9519]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][270] -> [SKIP][271] ([i915#9519]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [PASS][272] -> [SKIP][273] ([i915#9519]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#6524] / [i915#6805]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#6524]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#6524]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9808]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-2/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#9683]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#9683]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9688]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +16 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9732]) +15 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-3/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#1072] / [i915#9732]) +21 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +24 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#5289]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#5289]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#4235]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#4235]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - shard-dg1: [PASS][291] -> [FAIL][292] ([i915#5465]) +1 other test fail [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-17/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][293] ([i915#9196]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4: - shard-dg1: [PASS][294] -> [FAIL][295] ([i915#9196]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#9906]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2437] / [i915#9412]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#2437] / [i915#9412]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#2437]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-5/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#2437]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#2437]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][302] ([i915#2437]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk9/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#7387]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#2433]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#8850]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#8516]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-7/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][307] ([i915#8516]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#3291] / [i915#3708]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#3291] / [i915#3708]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#3708] / [i915#4077]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#3708]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-14/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3708]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][313] ([i915#3708]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-glk: NOTRUN -> [FAIL][314] ([i915#10291]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk1/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#9917]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#9917]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-6/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9917]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#9917]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][319] ([i915#9781]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][320] ([i915#9779]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-16/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][321] ([i915#9779]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-glk5/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@sysfs_timeslice_duration@duration@ccs2: - shard-dg2: [PASS][322] -> [INCOMPLETE][323] ([i915#9252]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-2/igt@sysfs_timeslice_duration@duration@ccs2.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@sysfs_timeslice_duration@duration@ccs2.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#4818]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#4818]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-1/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#4818]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#2575]) +8 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#2575]) +6 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#2575]) +12 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#7711]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-8/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#2575]) +13 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-tglu-4/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_perfmon@get-values-valid-perfmon: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#7711]) +5 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#7711]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-17/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#7711]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][335] ([i915#7742]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_persistence@smoketest: - shard-rkl: [FAIL][337] -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-3/igt@gem_ctx_persistence@smoketest.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][339] ([i915#2842]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-dg2: [INCOMPLETE][341] ([i915#7975]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [FAIL][343] ([i915#10378]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][345] ([i915#9820]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][347] ([i915#2122]) -> [PASS][348] +2 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-rkl: [FAIL][349] ([i915#2122]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][351] ([i915#9519]) -> [PASS][352] +2 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][353] ([i915#9196]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@prime_busy@hang-wait@rcs0: - shard-dg2: [INCOMPLETE][355] ([i915#10067]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-8/igt@prime_busy@hang-wait@rcs0.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@prime_busy@hang-wait@rcs0.html - shard-dg1: [INCOMPLETE][357] ([i915#10067]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg1-13/igt@prime_busy@hang-wait@rcs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg1-18/igt@prime_busy@hang-wait@rcs0.html #### Warnings #### * igt@gem_eio@kms: - shard-dg2: [FAIL][359] ([i915#5784]) -> [INCOMPLETE][360] ([i915#10513]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-2/igt@gem_eio@kms.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-8/igt@gem_eio@kms.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][361] ([i915#10131] / [i915#9820]) -> [ABORT][362] ([i915#10131] / [i915#9697]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][363] ([i915#9820] / [i915#9849]) -> [WARN][364] ([i915#7356]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [INCOMPLETE][365] ([i915#8816]) -> [SKIP][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-snb7/igt@kms_content_protection@atomic-dpms.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-snb2/igt@kms_content_protection@atomic-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][367] ([i915#4816]) -> [SKIP][368] ([i915#4070] / [i915#4816]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14509/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10067]: https://gitlab.freedesktop.org/drm/intel/issues/10067 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10291]: https://gitlab.freedesktop.org/drm/intel/issues/10291 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [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#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [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#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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#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#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [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.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9252]: https://gitlab.freedesktop.org/drm/intel/issues/9252 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7791 -> IGTPW_10954 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14509: b334e21cd00347d48ee5e8e8ab0a69c91f97b036 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10954: 10954 IGT_7791: 7d7be3a56e299d9ad14ac2c6535a7e14b4cfd4df @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10954/index.html [-- Attachment #2: Type: text/html, Size: 117813 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-03-30 23:26 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-03-29 21:14 [PATCH i-g-t] tests/xe_exec_threads: Reduce copy & paste Lucas De Marchi 2024-03-29 22:15 ` ✗ GitLab.Pipeline: warning for " Patchwork 2024-03-29 22:41 ` ✓ CI.xeBAT: success " Patchwork 2024-03-29 22:46 ` ✓ Fi.CI.BAT: " Patchwork 2024-03-29 23:36 ` [PATCH i-g-t] " Matthew Brost 2024-03-30 23:26 ` ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox