* [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars()
@ 2024-02-15 22:21 Rob Clark
2024-02-15 22:21 ` [PATCH i-g-t 2/2] tests/kms_plane_scaling: msm get_num_scalars() support Rob Clark
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Rob Clark @ 2024-02-15 22:21 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
Prep for next patch.
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
lib/igt_kms.c | 5 +++--
lib/igt_kms.h | 2 +-
tests/kms_plane_scaling.c | 24 ++++++++++++------------
3 files changed, 16 insertions(+), 15 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 1b4d0d7612a2..899b3a5001c4 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6333,17 +6333,18 @@ int igt_get_dp_mst_connector_id(igt_output_t *output)
/**
* get_num_scalers:
- * @drm_fd: drm file descriptor
+ * @display: the display
* @pipe: display pipe
*
* Returns: Number of scalers supported per pipe.
*/
-int get_num_scalers(int drm_fd, enum pipe pipe)
+int get_num_scalers(igt_display_t *display, enum pipe pipe)
{
char buf[8120];
char *start_loc1, *start_loc2;
int dir, res;
int num_scalers = 0;
+ int drm_fd = display->drm_fd;
char dest[20] = ":pipe ";
strcat(dest, kmstest_pipe_name(pipe));
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index b3882808b42f..7cbaf180a63b 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1217,6 +1217,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
bool intel_pipe_output_combo_valid(igt_display_t *display);
bool igt_check_output_is_dp_mst(igt_output_t *output);
int igt_get_dp_mst_connector_id(igt_output_t *output);
-int get_num_scalers(int drm_fd, enum pipe pipe);
+int get_num_scalers(igt_display_t *display, enum pipe pipe);
#endif /* __IGT_KMS_H__ */
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index acb4a1da1ecf..d2dd3fd843e8 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -1038,8 +1038,8 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
igt_output_set_pipe(output1, pipe1);
igt_output_set_pipe(output2, pipe2);
- igt_require(get_num_scalers(d->drm_fd, pipe1) >= 2);
- igt_require(get_num_scalers(d->drm_fd, pipe2) >= 2);
+ igt_require(get_num_scalers(display, pipe1) >= 2);
+ igt_require(get_num_scalers(display, pipe2) >= 2);
plane[0] = igt_output_get_plane(output1, 0);
igt_require(plane[0]);
@@ -1131,7 +1131,7 @@ static void invalid_parameter_tests(data_t *d)
igt_output_set_pipe(output, pipe);
plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
- igt_require(get_num_scalers(d->drm_fd, pipe) >= 1);
+ igt_require(get_num_scalers(&d->display, pipe) >= 1);
igt_create_fb(d->drm_fd, 256, 256,
DRM_FORMAT_XRGB8888,
@@ -1308,7 +1308,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1333,7 +1333,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1358,7 +1358,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1382,7 +1382,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1402,7 +1402,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1422,7 +1422,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1442,7 +1442,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 2)
+ if (get_num_scalers(&data.display, pipe) < 2)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1469,7 +1469,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
drmModeModeInfo *mode = NULL;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
/*
* Need to find mode with lowest vrefresh else
@@ -1494,7 +1494,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s-invalid-num-scalers",
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH i-g-t 2/2] tests/kms_plane_scaling: msm get_num_scalars() support 2024-02-15 22:21 [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Rob Clark @ 2024-02-15 22:21 ` Rob Clark 2024-02-16 11:25 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Rob Clark @ 2024-02-15 22:21 UTC (permalink / raw) To: igt-dev; +Cc: Rob Clark From: Rob Clark <robdclark@chromium.org> This may undercount # of scalars on hw with rgb pipes, but the scaling on yuv and rgb pipes is functionally equivalent, so for test coverage this is a good enough approximation. Signed-off-by: Rob Clark <robdclark@chromium.org> --- lib/igt_kms.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 899b3a5001c4..04526b2a5313 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6365,6 +6365,25 @@ int get_num_scalers(igt_display_t *display, enum pipe pipe) igt_assert(start_loc2 = strstr(start_loc1, "num_scalers=")); igt_assert_eq(sscanf(start_loc2, "num_scalers=%d", &num_scalers), 1); } + } else if (is_msm_device(drm_fd)) { + igt_plane_t *plane; + + /* + * msm devices have dma pipes (no csc, no scaling), rgb + * pipes (no csc, has scaling), and vid pipes (has csc, + * has scaling), but not all devices have rgb pipes. + * We can use the # of pipes that support YUV formats + * as a rough approximation of the # of scalars.. it may + * undercount on some hw, but it will not overcount + */ + for_each_plane_on_pipe(display, pipe, plane) { + for (unsigned i = 0; i < plane->format_mod_count; i++) { + if (igt_format_is_yuv(plane->formats[i])) { + num_scalers++; + break; + } + } + } } return num_scalers; -- 2.43.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() 2024-02-15 22:21 [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Rob Clark 2024-02-15 22:21 ` [PATCH i-g-t 2/2] tests/kms_plane_scaling: msm get_num_scalars() support Rob Clark @ 2024-02-16 11:25 ` Patchwork 2024-02-16 11:49 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-02-16 11:25 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1578 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() URL : https://patchwork.freedesktop.org/series/129979/ State : success == Summary == CI Bug Log - changes from XEIGT_7715_BAT -> XEIGTPW_10684_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10684_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_threads@threads-mixed-fd-basic: - bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#1167]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7715/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10684/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html [Intel XE#1167]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1167 Build changes ------------- * IGT: IGT_7715 -> IGTPW_10684 * Linux: xe-787-6d3abf8f7f55420cf53e9ed344872c459ecfd0ed -> xe-788-f9855a4be31b723fe67e9b6f6cfb0df7760cd6d8 IGTPW_10684: 10684 IGT_7715: 7715 xe-787-6d3abf8f7f55420cf53e9ed344872c459ecfd0ed: 6d3abf8f7f55420cf53e9ed344872c459ecfd0ed xe-788-f9855a4be31b723fe67e9b6f6cfb0df7760cd6d8: f9855a4be31b723fe67e9b6f6cfb0df7760cd6d8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10684/index.html [-- Attachment #2: Type: text/html, Size: 2154 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() 2024-02-15 22:21 [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Rob Clark 2024-02-15 22:21 ` [PATCH i-g-t 2/2] tests/kms_plane_scaling: msm get_num_scalars() support Rob Clark 2024-02-16 11:25 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Patchwork @ 2024-02-16 11:49 ` Patchwork 2024-02-16 21:26 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-02-27 22:18 ` [PATCH i-g-t 1/2] " Jessica Zhang 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-02-16 11:49 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6656 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() URL : https://patchwork.freedesktop.org/series/129979/ State : success == Summary == CI Bug Log - changes from CI_DRM_14281 -> IGTPW_10684 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/index.html Participating hosts (36 -> 36) ------------------------------ Additional (2): bat-atsm-1 bat-arls-2 Missing (2): fi-apl-guc fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10684: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@vgem_basic@unload: - {bat-arls-2}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-arls-2/igt@vgem_basic@unload.html Known issues ------------ Here are the changes found in IGTPW_10684 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#4083]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#6077]) +37 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#6078]) +17 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#6093]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#1836]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#7357]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6094]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-atsm-1: NOTRUN -> [SKIP][12] ([fdo#109295] / [i915#6078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-atsm-1: NOTRUN -> [SKIP][13] ([fdo#109295] / [i915#4077]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][14] ([fdo#109295]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/bat-atsm-1/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194 [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7715 -> IGTPW_10684 CI-20190529: 20190529 CI_DRM_14281: f9855a4be31b723fe67e9b6f6cfb0df7760cd6d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10684: 10684 IGT_7715: 7715 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/index.html [-- Attachment #2: Type: text/html, Size: 6636 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() 2024-02-15 22:21 [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Rob Clark ` (2 preceding siblings ...) 2024-02-16 11:49 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-16 21:26 ` Patchwork 2024-02-27 22:18 ` [PATCH i-g-t 1/2] " Jessica Zhang 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-02-16 21:26 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 99438 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() URL : https://patchwork.freedesktop.org/series/129979/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14281_full -> IGTPW_10684_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10684_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10684_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_10684/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10684_full: ### IGT changes ### #### Possible regressions #### * igt@gem_softpin@evict-single-offset: - shard-rkl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@gem_softpin@evict-single-offset.html * igt@runner@aborted: - shard-glk: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk1/igt@runner@aborted.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_psr@psr2-primary-page-flip@edp-1}: - shard-mtlp: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-mtlp-6/igt@kms_psr@psr2-primary-page-flip@edp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@kms_psr@psr2-primary-page-flip@edp-1.html Known issues ------------ Here are the changes found in IGTPW_10684_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +10 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@drm_fdinfo@virtual-busy-idle: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-idle.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][13] ([i915#7742]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][20] -> [FAIL][21] ([i915#6268]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#9561]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][26] ([i915#10030] / [i915#7975] / [i915#8213]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][27] ([i915#7975] / [i915#8213]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4036]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][32] ([i915#6117]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][38] -> [FAIL][39] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][40] ([i915#2842]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read-noreloc.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2190]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][58] ([i915#5493]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-3/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk2/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#284]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@zero-extend: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@bad-size: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_partial_pwrite_pread@write-uncached.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-valid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-2.html - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@gem_readwrite@read-write.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4885]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3281]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][90] ([fdo#109289]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html - shard-dg1: NOTRUN -> [SKIP][91] ([fdo#109289]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@gen7_exec_parse@chained-batch.html - shard-tglu: NOTRUN -> [SKIP][92] ([fdo#109289]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@gen9_exec_parse@allowed-all.html - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#10137] / [i915#5566]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#10137] / [i915#5566]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-glk8/igt@gen9_exec_parse@allowed-single.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#6227]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#7178]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6590]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][104] -> [FAIL][105] ([i915#3591]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][106] ([fdo#109293] / [fdo#109506]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#6621]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8925]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-3/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3555] / [i915#8925]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4387]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4387]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg1: NOTRUN -> [SKIP][112] ([fdo#109303]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@i915_query@query-topology-known-pci-ids.html - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#109303]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-9/igt@i915_query@query-topology-known-pci-ids.html - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109303]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#109303]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg1: NOTRUN -> [SKIP][116] ([fdo#109302]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@i915_query@query-topology-unsupported.html - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#109302]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][118] ([i915#9311]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][119] ([i915#9311]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][120] ([i915#7443]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7707]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#7707]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7707]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4212]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/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][126] ([i915#8709]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/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-dg2: NOTRUN -> [SKIP][127] ([i915#9531]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#9531]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#9531]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#1769]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615] / [i915#5286]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#5286]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111614]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111614]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-9/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][136] ([fdo#111614]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][137] ([fdo#111614] / [i915#3638]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-rkl: [PASS][138] -> [INCOMPLETE][139] ([i915#9538]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][140] -> [FAIL][141] ([i915#3743]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][142] ([fdo#111615]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +9 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6187]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][145] ([fdo#110723]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#2705]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#2705]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +11 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095]) +17 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@kms_ccs@pipe-c-bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#5354]) +20 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-4/igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-y-tiled-ccs: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#5354] / [i915#6095]) +18 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-y-tiled-ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#5354] / [i915#6095]) +34 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-1/igt@kms_ccs@pipe-d-bad-rotation-90-yf-tiled-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3742]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3742]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-10/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4087]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-50: - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#111827]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#111827]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][160] ([fdo#111827]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111827]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7828]) +10 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#7828]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#7828]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-4/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#7116] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#7118]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7118] / [i915#9424]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3359]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#109279] / [i915#3359]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3359]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3359]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8814]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3555]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3359]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][182] ([fdo#109274] / [i915#5354]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825]) +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/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][184] ([i915#4103]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9809]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109274]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274] / [fdo#111767] / [i915#5354]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][188] -> [FAIL][189] ([i915#2346]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#4103]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#4103] / [i915#4213]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#4103] / [i915#4213]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][193] ([fdo#110189] / [i915#9723]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][194] ([fdo#110189] / [i915#9227]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][195] ([fdo#110189] / [i915#9723]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555]) +6 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3804]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9688]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3469]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#1839]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#1839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9337]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9337]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#9337]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3637]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][213] ([fdo#111825] / [i915#9934]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][214] ([fdo#109274] / [fdo#111767]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([fdo#109274] / [i915#3637]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][216] ([fdo#109274]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8381]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2672]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2672]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8810]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5274]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354]) +75 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-snb: [PASS][227] -> [SKIP][228] ([fdo#109271]) +14 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][229] ([fdo#111767] / [i915#1825]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][230] ([fdo#111825] / [i915#1825]) +19 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/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][231] ([i915#8708]) +7 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8708]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111767] / [fdo#111825] / [i915#1825]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#8708]) +16 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][236] ([fdo#111825]) +10 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][237] ([fdo#111767] / [i915#5354]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9766]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#10070]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][240] ([fdo#109280] / [fdo#111767]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][241] ([fdo#111767] / [fdo#111825]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#1825]) +20 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109280]) +10 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3458]) +15 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-tglu: NOTRUN -> [SKIP][245] ([fdo#110189]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#3023]) +12 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#6118]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][248] -> [SKIP][249] ([i915#433]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-9/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][253] ([fdo#109289]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][254] ([fdo#109289]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#6953]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9423]) +5 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/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][257] ([i915#9423]) +11 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#5176]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#5176] / [i915#9423]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#9423]) +11 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#5235]) +11 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#5235] / [i915#9423]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#5235]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#5235]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#5235]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#5235]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][267] ([fdo#109271]) +205 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8430]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#9519]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#9519]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][271] -> [SKIP][272] ([i915#9519]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9519]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#6524]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9683]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][276] ([fdo#109642] / [fdo#111068] / [i915#9683]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#5289]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#4235]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-rotation-90: - shard-rkl: NOTRUN -> [INCOMPLETE][279] ([i915#8875] / [i915#9475] / [i915#9569]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#5289]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#4235] / [i915#5190]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][282] ([fdo#111615] / [i915#5289]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8809]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][284] ([i915#5465]) +3 other tests fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][285] ([fdo#109309]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][286] ([i915#9196]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: [PASS][287] -> [FAIL][288] ([i915#9196]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][289] ([i915#9196]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][290] ([i915#9196]) +2 other tests fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8808]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#2437] / [i915#9412]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#2437]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-2/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#7387]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#8516]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#8516]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#3708] / [i915#4077]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#3708]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-12/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][300] ([fdo#109295] / [fdo#111656] / [i915#3708]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-4/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][301] ([i915#3708] / [i915#4077]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][302] ([fdo#109295] / [fdo#111656]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#9917]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-snb: NOTRUN -> [FAIL][304] ([i915#9781]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb4/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][305] ([i915#9781]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][306] ([i915#9779]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#2575]) +8 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-5/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#2575]) +13 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#2575]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-tglu: NOTRUN -> [SKIP][310] ([fdo#109315] / [i915#2575]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-5/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_csd@valid-submission: - shard-rkl: NOTRUN -> [SKIP][311] ([fdo#109315]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-2/igt@v3d/v3d_submit_csd@valid-submission.html * igt@v3d/v3d_wait_bo@unused-bo-1ns: - shard-snb: NOTRUN -> [SKIP][312] ([fdo#109271]) +47 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb4/igt@v3d/v3d_wait_bo@unused-bo-1ns.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#7711]) +5 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-2/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#7711]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#7711]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#2575]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#7711]) +6 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg2-10/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_ctx_persistence@smoketest: - shard-rkl: [FAIL][318] -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-4/igt@gem_ctx_persistence@smoketest.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@gem_ctx_persistence@smoketest.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][320] ([i915#5784]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg1-16/igt@gem_eio@unwedge-stress.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][322] ([i915#2842]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [FAIL][324] ([i915#2842]) -> [PASS][325] +1 other test pass [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][326] ([i915#2876]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s3-devices@lmem0: - shard-dg1: [FAIL][328] ([i915#5115]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg1-15/igt@gem_exec_suspend@basic-s3-devices@lmem0.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][330] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][332] ([i915#3591]) -> [PASS][333] +1 other test pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [INCOMPLETE][334] -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb7/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-dg1: [FAIL][336] ([i915#10031]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-dg1-15/igt@i915_suspend@sysfs-reader.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-dg1-15/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][338] ([i915#5138]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][340] ([i915#3743]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-snb: [SKIP][342] ([fdo#109271] / [fdo#111767]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][344] ([fdo#109271]) -> [PASS][345] +6 other tests pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][346] ([i915#9295]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][348] ([i915#9519]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][350] ([i915#9475] / [i915#9569]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - shard-glk: [FAIL][352] ([i915#9196]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-glk4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-glk8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][354] ([i915#9820]) -> [INCOMPLETE][355] ([i915#10137] / [i915#9820] / [i915#9849]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: [FAIL][356] ([i915#3591]) -> [WARN][357] ([i915#2681]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_content_protection@mei-interface: - shard-snb: [INCOMPLETE][358] ([i915#9878]) -> [SKIP][359] ([fdo#109271]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb7/igt@kms_content_protection@mei-interface.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [INCOMPLETE][360] ([i915#8816]) -> [SKIP][361] ([fdo#109271]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb7/igt@kms_content_protection@srm.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb6/igt@kms_content_protection@srm.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render: - shard-snb: [SKIP][362] ([fdo#109271]) -> [SKIP][363] ([fdo#109271] / [fdo#111767]) +3 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-snb: [SKIP][364] ([fdo#109271] / [fdo#111767]) -> [SKIP][365] ([fdo#109271]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][366] ([i915#4816]) -> [SKIP][367] ([i915#4070] / [i915#4816]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][368] ([i915#3361]) -> [FAIL][369] ([i915#9295]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14281/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [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#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [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#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#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [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#9475]: https://gitlab.freedesktop.org/drm/intel/issues/9475 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9538]: https://gitlab.freedesktop.org/drm/intel/issues/9538 [i915#9561]: https://gitlab.freedesktop.org/drm/intel/issues/9561 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [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_7715 -> IGTPW_10684 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14281: f9855a4be31b723fe67e9b6f6cfb0df7760cd6d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10684: 10684 IGT_7715: 7715 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10684/index.html [-- Attachment #2: Type: text/html, Size: 123546 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() 2024-02-15 22:21 [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Rob Clark ` (3 preceding siblings ...) 2024-02-16 21:26 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-02-27 22:18 ` Jessica Zhang 4 siblings, 0 replies; 6+ messages in thread From: Jessica Zhang @ 2024-02-27 22:18 UTC (permalink / raw) To: igt-dev On 2/15/2024 2:21 PM, Rob Clark wrote: > From: Rob Clark <robdclark@chromium.org> > > Prep for next patch. Hi Rob, The code in this and the 2nd patch LGTM, but can we change the commit message here to be more descriptive? Or maybe we could squash the 2 patches so it's easier to see why the parameter was changed? Thanks, Jessica Zhang > > Signed-off-by: Rob Clark <robdclark@chromium.org> > --- > lib/igt_kms.c | 5 +++-- > lib/igt_kms.h | 2 +- > tests/kms_plane_scaling.c | 24 ++++++++++++------------ > 3 files changed, 16 insertions(+), 15 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 1b4d0d7612a2..899b3a5001c4 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6333,17 +6333,18 @@ int igt_get_dp_mst_connector_id(igt_output_t *output) > > /** > * get_num_scalers: > - * @drm_fd: drm file descriptor > + * @display: the display > * @pipe: display pipe > * > * Returns: Number of scalers supported per pipe. > */ > -int get_num_scalers(int drm_fd, enum pipe pipe) > +int get_num_scalers(igt_display_t *display, enum pipe pipe) > { > char buf[8120]; > char *start_loc1, *start_loc2; > int dir, res; > int num_scalers = 0; > + int drm_fd = display->drm_fd; > char dest[20] = ":pipe "; > > strcat(dest, kmstest_pipe_name(pipe)); > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index b3882808b42f..7cbaf180a63b 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1217,6 +1217,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); > bool intel_pipe_output_combo_valid(igt_display_t *display); > bool igt_check_output_is_dp_mst(igt_output_t *output); > int igt_get_dp_mst_connector_id(igt_output_t *output); > -int get_num_scalers(int drm_fd, enum pipe pipe); > +int get_num_scalers(igt_display_t *display, enum pipe pipe); > > #endif /* __IGT_KMS_H__ */ > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > index acb4a1da1ecf..d2dd3fd843e8 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -1038,8 +1038,8 @@ static void test_scaler_with_multi_pipe_plane(data_t *d) > igt_output_set_pipe(output1, pipe1); > igt_output_set_pipe(output2, pipe2); > > - igt_require(get_num_scalers(d->drm_fd, pipe1) >= 2); > - igt_require(get_num_scalers(d->drm_fd, pipe2) >= 2); > + igt_require(get_num_scalers(display, pipe1) >= 2); > + igt_require(get_num_scalers(display, pipe2) >= 2); > > plane[0] = igt_output_get_plane(output1, 0); > igt_require(plane[0]); > @@ -1131,7 +1131,7 @@ static void invalid_parameter_tests(data_t *d) > igt_output_set_pipe(output, pipe); > plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > > - igt_require(get_num_scalers(d->drm_fd, pipe) >= 1); > + igt_require(get_num_scalers(&d->display, pipe) >= 1); > > igt_create_fb(d->drm_fd, 256, 256, > DRM_FORMAT_XRGB8888, > @@ -1308,7 +1308,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1333,7 +1333,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1358,7 +1358,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1382,7 +1382,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1402,7 +1402,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1422,7 +1422,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1442,7 +1442,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 2) > + if (get_num_scalers(&data.display, pipe) < 2) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { > @@ -1469,7 +1469,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_valid_output_on_pipe(&data.display, pipe, output) { > drmModeModeInfo *mode = NULL; > > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > /* > * Need to find mode with lowest vrefresh else > @@ -1494,7 +1494,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_pipe_with_valid_output(&data.display, pipe, output) { > if (!pipe_output_combo_valid(&data.display, pipe, output)) > continue; > - if (get_num_scalers(data.drm_fd, pipe) < 1) > + if (get_num_scalers(&data.display, pipe) < 1) > continue; > > igt_dynamic_f("pipe-%s-%s-invalid-num-scalers", > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-02-27 22:18 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-15 22:21 [PATCH i-g-t 1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Rob Clark 2024-02-15 22:21 ` [PATCH i-g-t 2/2] tests/kms_plane_scaling: msm get_num_scalars() support Rob Clark 2024-02-16 11:25 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_plane_scaling: Pass display to get_num_scalars() Patchwork 2024-02-16 11:49 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-16 21:26 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-02-27 22:18 ` [PATCH i-g-t 1/2] " Jessica Zhang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox