From jesse.zhang at amd.com Thu Jan 2 03:53:08 2025 From: jesse.zhang at amd.com (Jesse.zhang@amd.com) Date: Thu, 2 Jan 2025 11:53:08 +0800 Subject: [PATCH i-g-t] lib/amdgpu: enhance wait memory helper Message-ID: <20250102035308.1997205-1-jesse.zhang@amd.com> Test all sdma rings and ensure that all rings can be recovered. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher Signed-off-by: Jesse Zhang --- lib/amdgpu/amd_deadlock_helpers.c | 91 ++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 3 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index 87078548c..dabd7ae76 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -43,8 +43,8 @@ write_mem_address(void *data) return 0; } -void -amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +static void +amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uint32_t priority) { amdgpu_context_handle context_handle; amdgpu_bo_handle ib_result_handle; @@ -65,7 +65,11 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty int job_count = 0; struct amdgpu_cmd_base *base_cmd = get_cmd_base(); - r = amdgpu_cs_ctx_create(device_handle, &context_handle); + if( priority == AMDGPU_CTX_PRIORITY_HIGH) + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle); + else + r = amdgpu_cs_ctx_create(device_handle, &context_handle); + igt_assert_eq(r, 0); r = amdgpu_bo_alloc_and_map_raw(device_handle, bo_cmd_size, bo_cmd_size, @@ -169,6 +173,87 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty free_cmd_base(base_cmd); } +void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +{ + int r; + FILE *fp; + char cmd[1024]; + char buffer[128]; + long sched_mask = 0; + struct drm_amdgpu_info_hw_ip info; + uint32_t ring_id, prio; + char sysfs[125]; + + r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info); + igt_assert_eq(r, 0); + if (!info.available_rings) + igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); + + if (ip_type == AMD_IP_GFX) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + else if (ip_type == AMD_IP_COMPUTE) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + else if (ip_type == AMD_IP_DMA) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); + r = access(sysfs, R_OK); + if (!r) { + fp = popen(cmd, "r"); + if (fp == NULL) + igt_skip("read the sysfs failed: %s \n",sysfs); + + if (fgets(buffer, 128, fp) != NULL) + sched_mask = strtol(buffer, NULL, 16); + + pclose(fp); + } else { + sched_mask = 1; + igt_info("The scheduling ring only enables one for ip %d\n", ip_type); + } + + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) { + /* check sched is ready is on the ring. */ + if (!((1 << ring_id) & sched_mask)) + continue; + + if (sched_mask > 1 && ring_id == 0 && + ip_type == AMD_IP_COMPUTE) { + /* for the compute multiple rings, the first queue + * as high priority compute queue. + * Need to create a high priority ctx. + */ + prio = AMDGPU_CTX_PRIORITY_HIGH; + } else if (sched_mask > 1 && ring_id == 1 && + ip_type == AMD_IP_GFX) { + /* for the gfx multiple rings, pipe1 queue0 as + * high priority graphics queue. + * Need to create a high priority ctx. + */ + prio = AMDGPU_CTX_PRIORITY_HIGH; + } else { + prio = AMDGPU_CTX_PRIORITY_NORMAL; + } + + if (sched_mask > 1) { + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s", + 0x1 << ring_id, sysfs); + r = system(cmd); + igt_assert_eq(r, 0); + } + + amdgpu_wait_memory(device_handle, ip_type, prio); + } + + /* recover the sched mask */ + if (sched_mask > 1) { + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); + r = system(cmd); + igt_assert_eq(r, 0); + } + +} + static void bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, uint32_t priority) -- 2.25.1 From patchwork at emeril.freedesktop.org Thu Jan 2 04:35:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 04:35:25 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_Inject_errors_during_xe?= =?utf-8?q?=5Fguc=5Fct=5Fsend=5Frecv_=26_xe=5Fguc=5Fmmio=5Fsend=5Frecv_=28re?= =?utf-8?q?v2=29?= In-Reply-To: <20241230090210.17621-1-satyanarayana.k.v.p@intel.com> References: <20241230090210.17621-1-satyanarayana.k.v.p@intel.com> Message-ID: <173579252558.1910232.8687536103967966277@b555e5b46a47> == Series Details == Series: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev2) URL : https://patchwork.freedesktop.org/series/143054/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1338101 for the overview. test:verify-blacklists has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/68745396): Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing meson-test-list.txt Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1735792144:get_sources section_start:1735792144:download_artifacts Downloading artifacts Downloading artifacts for build:tests-fedora (68745382)... Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=68745382 responseStatus=200 OK token=glcbt-64 section_end:1735792163:download_artifacts section_start:1735792163:step_script Executing "step_script" stage of the job script Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-14d546e49011de95895107e10dfea34c2a58a8a1 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1735792167:step_script section_start:1735792167:cleanup_file_variables Cleaning up project directory and file based variables section_end:1735792168:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1338101 From patchwork at emeril.freedesktop.org Thu Jan 2 04:36:12 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 04:36:12 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/amdgpu=3A_enhance_wait_?= =?utf-8?q?memory_helper?= In-Reply-To: <20250102035308.1997205-1-jesse.zhang@amd.com> References: <20250102035308.1997205-1-jesse.zhang@amd.com> Message-ID: <173579257267.1910236.8217894289996711242@b555e5b46a47> == Series Details == Series: lib/amdgpu: enhance wait memory helper URL : https://patchwork.freedesktop.org/series/143052/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12372_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12372_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#1033]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-7/igt at kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/bat-adlp-7/igt at kms_frontbuffer_tracking@basic.html * igt at xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#688]) +9 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/bat-adlp-7/igt at xe_evict@evict-beng-small.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#288]) +32 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/bat-adlp-7/igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12372 IGTPW_12372: 5b525d8e8b5e216a5d1536e6715580034094febe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 2 05:05:10 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 05:05:10 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Inject_errors_during_xe=5Fg?= =?utf-8?q?uc=5Fct=5Fsend=5Frecv_=26_xe=5Fguc=5Fmmio=5Fsend=5Frecv_=28rev2?= =?utf-8?q?=29?= In-Reply-To: <20241230090210.17621-1-satyanarayana.k.v.p@intel.com> References: <20241230090210.17621-1-satyanarayana.k.v.p@intel.com> Message-ID: <173579431062.1916357.8967734797492914188@b555e5b46a47> == Series Details == Series: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev2) URL : https://patchwork.freedesktop.org/series/143054/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12373_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12373_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +9 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/bat-adlp-7/igt at xe_evict@evict-beng-small.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/bat-adlp-7/igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12373 IGTPW_12373: 14d546e49011de95895107e10dfea34c2a58a8a1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From santhosh.reddy.guddati at intel.com Thu Jan 2 05:44:55 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Thu, 2 Jan 2025 11:14:55 +0530 Subject: [PATCH i-g-t v7 0/2] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Message-ID: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> Add a subtest to validate switching from ultra joiner to big joiner and vice-versa. Santhosh Reddy Guddati (2): tests/intel/kms_joiner: switch modeset between uj and bj lib/igt_kms.c: Enforce strict check for bigjoiner_possible lib/igt_kms.c | 6 ++- tests/intel/kms_joiner.c | 97 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+), 2 deletions(-) -- 2.43.0 From santhosh.reddy.guddati at intel.com Thu Jan 2 05:44:56 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Thu, 2 Jan 2025 11:14:56 +0530 Subject: [PATCH i-g-t v7 1/2] tests/intel/kms_joiner: switch modeset between uj and bj In-Reply-To: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> References: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> Message-ID: <20250102054457.58520-2-santhosh.reddy.guddati@intel.com> Add a subtest to validate switching from ultra joiner to big joiner and vice-versa. v2: Add new subtests for switching without force joiner (Karthik). v3: Start with uj to bj switch, if not available switch to force mode. v4: Check for uj, bj support before starting dynamic tests (karthik) call reset_connectors after forcing to uj. v5: Add a separate function to switch modes and execute test for each connected supported output (karthik). v6: Add force_joiner and dsc supported checks, remove redundant checks while setting modes (karthik). Remove display_reset during switch-modeset, intentionally force big joiner and then switch to ultra joiner. v7: Remove redundant switching modeset. Signed-off-by: Santhosh Reddy Guddati --- tests/intel/kms_joiner.c | 97 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 418ff26a6..086cfeb71 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -71,6 +71,9 @@ * SUBTEST: invalid-modeset-force-ultra-joiner * Description: Verify if the modeset on the other pipes are rejected when * the pipe A is active with force ultra joiner modeset. + * + * SUBTEST: switch-modeset-ultra-joiner-big-joiner + * Description: Verify switching between ultra joiner and big joiner modeset. */ IGT_TEST_DESCRIPTION("Test joiner / force joiner"); @@ -161,6 +164,85 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, return master_pipe; } +static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode) +{ + igt_plane_t *primary; + igt_fb_t fb; + + igt_info("Committing joiner mode for output %s with mode %dx%d@%d\n", + output->name, mode->hdisplay, mode->vdisplay, mode->vrefresh); + + igt_output_set_pipe(output, PIPE_A); + igt_output_override_mode(output, mode); + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, &fb); + igt_plane_set_fb(primary, &fb); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + igt_display_reset(&data->display); + igt_reset_connectors(); + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &fb); +} + +static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *output) +{ + drmModeModeInfo bj_mode; + drmModeModeInfo uj_mode; + int status; + bool ultrajoiner_found; + enum pipe pipe; + bool force_joiner_supported; + + drmModeConnector *connector = output->config.connector; + + ultrajoiner_found = ultrajoiner_mode_found(data->drm_fd, connector, max_dotclock, &uj_mode); + force_joiner_supported = igt_has_force_joiner_debugfs(data->drm_fd, output->name) && + is_dsc_supported_by_sink(data->drm_fd, output); + + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else if (force_joiner_supported) { + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + uj_mode = *igt_output_get_mode(output); + } else { + igt_info("No ultra joiner mode found on output %s\n", output->name); + return; + } + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { + set_joiner_mode(data, output, &uj_mode); + /* Switch to big joiner mode */ + if (bigjoiner_mode_found(data->drm_fd, output->config.connector, + max_dotclock, &bj_mode)) { + igt_output_override_mode(output, &bj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_BIG_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + bj_mode = *igt_output_get_mode(output); + } + + set_joiner_mode(data, output, &bj_mode); + + /* Switch back to ultra joiner*/ + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + } + + set_joiner_mode(data, output, &uj_mode); + } +} + static void test_single_joiner(data_t *data, int output_count, bool force_joiner) { int i; @@ -593,6 +675,21 @@ igt_main } } + igt_describe("Verify modeset switch between ultra joiner and big joiner"); + igt_subtest_with_dynamic("switch-modeset-ultra-joiner-big-joiner") { + igt_require_f(ultra_joiner_supported, + "Ultra joiner not supported on this platform\n"); + igt_require_f(data.ultra_joiner_output_count > 0 || + data.non_ultra_joiner_output_count > 0, + "No ultra joiner or force ultra joiner output found\n"); + igt_require_f(data.n_pipes > 3, + "Minimum 4 pipes required\n"); + + for_each_connected_output(&data.display, output) { + switch_modeset_ultra_joiner_big_joiner(&data, output); + } + } + igt_subtest_with_dynamic("invalid-modeset-force-ultra-joiner") { igt_require_f(ultra_joiner_supported, "Ultra joiner not supported on this platform\n"); -- 2.43.0 From santhosh.reddy.guddati at intel.com Thu Jan 2 05:44:57 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Thu, 2 Jan 2025 11:14:57 +0530 Subject: [PATCH i-g-t v7 2/2] lib/igt_kms.c: Enforce strict check for bigjoiner_possible In-Reply-To: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> References: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> Message-ID: <20250102054457.58520-3-santhosh.reddy.guddati@intel.com> update bigjoiner_mode_found to check for ultrajoiner possibility. This ensures that the mode is only set to bigjoiner if ultrajoiner is not possible. Signed-off-by: Santhosh Reddy Guddati --- lib/igt_kms.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index a67d17c4f..9fafd0ce0 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6419,10 +6419,12 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, bool found = false; igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); + found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock) && + !igt_ultrajoiner_possible(&connector->modes[0], max_dotclock); if (!found) { igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); + found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock) && + !igt_ultrajoiner_possible(&connector->modes[0], max_dotclock); } if (found) *mode = connector->modes[0]; -- 2.43.0 From patchwork at emeril.freedesktop.org Thu Jan 2 06:04:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 06:04:42 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/amdgpu=3A_enhance_wait?= =?utf-8?q?_memory_helper?= In-Reply-To: <20250102035308.1997205-1-jesse.zhang@amd.com> References: <20250102035308.1997205-1-jesse.zhang@amd.com> Message-ID: <173579788268.1927719.5651512372582805298@b555e5b46a47> == Series Details == Series: lib/amdgpu: enhance wait memory helper URL : https://patchwork.freedesktop.org/series/143052/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12372_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12372_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12372_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12372_full: ### IGT changes ### #### Possible regressions #### * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [FAIL][1] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_flip@plain-flip-ts-check at a-dp4: - shard-dg2-set2: [PASS][2] -> [INCOMPLETE][3] +2 other tests incomplete [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_flip@plain-flip-ts-check at a-dp4.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at kms_flip@plain-flip-ts-check at a-dp4.html * igt at kms_pm_backlight@fade-with-dpms: - shard-lnl: [PASS][4] -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_pm_backlight@fade-with-dpms.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [PASS][6] -> [FAIL][7] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_psr@psr2-primary-render.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at kms_psr@psr2-primary-render.html #### Warnings #### * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][8] ([Intel XE#1473]) -> [DMESG-FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html New tests --------- New tests have been introduced between XEIGT_8174_full and XEIGTPW_12372_full: ### New IGT tests (15) ### * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at a-dp4: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at b-dp4: - Statuses : 1 pass(s) - Exec time: [0.68] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.36] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - Statuses : 1 skip(s) - Exec time: [0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.11] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.33] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.09, 0.35] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.36] s Known issues ------------ Here are the changes found in XEIGTPW_12372_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3157]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3279]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1428]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-4/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#367]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3: - shard-bmg: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#3862]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#3432]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +118 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#3113]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +37 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#306]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-1/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#307]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3278]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2341]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#3407]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_content_protection@srm at pipe-a-dp-5.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2321]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2321]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1424]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455]) +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#309]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-1/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3007]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#877]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2286]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#2141]) +2 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3383]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-8/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2244]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#3321]) +3 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#3149]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1421]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#2597]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#3879]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#2635]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#3007]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-plain-flip.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_flip@2x-plain-flip.html - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#2423] / [i915#2575]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-plain-flip.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#2882]) +4 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3321]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +5 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#2049] / [Intel XE#2597]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-suspend.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][74] ([Intel XE#2597]) +3 other tests incomplete [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at c-hdmi-a3: - shard-bmg: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#2597] / [Intel XE#2635]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at c-hdmi-a3.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_flip@flip-vs-suspend at c-hdmi-a3.html * igt at kms_flip@plain-flip-ts-check: - shard-dg2-set2: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2049]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_flip@plain-flip-ts-check.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling (NEW): - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401] / [Intel XE#1745]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +17 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#2333]) +9 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#656]) +18 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2352]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2313]) +29 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1469]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#653]) +8 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#1503]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_hdr@invalid-hdr.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1503]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#3898]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#346]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2927]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2927]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +14 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#908]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2499]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2893]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#1489]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1406]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-5/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#3414]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2413]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1435]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#362]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2450]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1499]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1499]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#2142]) +1 other test fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#756]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#756]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1091] / [Intel XE#2849]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#3889]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#688]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][132] ([Intel XE#2364]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#1600]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2322]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_compute_mode@twice-rebind: - shard-bmg: [PASS][135] -> [SKIP][136] ([Intel XE#1130]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_exec_compute_mode@twice-rebind.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at xe_exec_compute_mode@twice-rebind.html - shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#1130]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_compute_mode@twice-rebind.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at xe_exec_compute_mode@twice-rebind.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#288]) +7 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [PASS][140] -> [DMESG-WARN][141] ([Intel XE#3467]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html - shard-lnl: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#3467]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1192]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-8/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#378]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at xe_module_load@force-load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][146] -> [FAIL][147] ([Intel XE#3546]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@many-reload.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at xe_module_load@many-reload.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1420] / [Intel XE#2838]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-3/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2284]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#584]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-5/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-6/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][153] -> [ABORT][154] ([Intel XE#1358] / [Intel XE#1607]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_pm@s4-exec-after.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#579]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_pm_residency@cpg-basic: - shard-bmg: [PASS][156] -> [INCOMPLETE][157] ([Intel XE#3088]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_pm_residency@cpg-basic.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-7/igt at xe_pm_residency@cpg-basic.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#944]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#944]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3342]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][162] ([Intel XE#877]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][164] ([Intel XE#3321]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp5: - shard-dg2-set2: [FAIL][166] ([Intel XE#301]) -> [PASS][167] +2 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp5.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp5.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp5: - shard-dg2-set2: [FAIL][168] ([Intel XE#3321]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp5.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp5.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp5: - shard-dg2-set2: [FAIL][170] ([Intel XE#3149]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp5.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp5.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][174] ([Intel XE#2882]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-436/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][178] -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-7/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][180] ([Intel XE#455]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_hdr@invalid-hdr.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at kms_hdr@invalid-hdr.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][182] ([Intel XE#1035]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][184] ([Intel XE#718]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][186] ([Intel XE#3313]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][188] -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-1/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][190] ([Intel XE#1473]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][192] ([Intel XE#3865]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][194] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-lnl-7/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][196] -> [PASS][197] +2 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][198] ([Intel XE#323]) -> [SKIP][199] ([Intel XE#2423] / [i915#2575]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: [SKIP][200] ([Intel XE#2286]) -> [SKIP][201] ([Intel XE#3007]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][202] ([Intel XE#455]) -> [SKIP][203] ([Intel XE#2136]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-bmg: [SKIP][204] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][205] ([Intel XE#2136] / [Intel XE#2231]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][206] ([Intel XE#877]) -> [FAIL][207] ([Intel XE#2333]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][208] ([Intel XE#2486]) -> [SKIP][209] ([Intel XE#3007]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_panel_fitting@legacy.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_panel_fitting@legacy.html - shard-dg2-set2: [SKIP][210] ([Intel XE#455]) -> [SKIP][211] ([Intel XE#2423] / [i915#2575]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_panel_fitting@legacy.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_panel_fitting@legacy.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][212] ([Intel XE#362]) -> [FAIL][213] ([Intel XE#1729]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][214] ([Intel XE#2426]) -> [SKIP][215] ([Intel XE#2509]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][216] ([Intel XE#756]) -> [SKIP][217] ([Intel XE#3007]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg2-set2: [SKIP][218] ([Intel XE#756]) -> [SKIP][219] ([Intel XE#2423] / [i915#2575]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [FAIL][220] ([Intel XE#2364]) -> [SKIP][221] ([Intel XE#1130]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-beng-large-multi-vm-cm.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-5/igt at xe_evict@evict-beng-large-multi-vm-cm.html - shard-dg2-set2: [FAIL][222] ([Intel XE#1600]) -> [SKIP][223] ([Intel XE#1130]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][224] ([Intel XE#1473]) -> [FAIL][225] ([Intel XE#1000]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][226] ([Intel XE#1473]) -> [FAIL][227] ([Intel XE#1000]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][228] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][229] ([Intel XE#1000]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/shard-bmg-7/igt at xe_evict@evict-mixed-threads-large.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12372 IGTPW_12372: 5b525d8e8b5e216a5d1536e6715580034094febe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12372/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 2 06:24:59 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 06:24:59 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fjoiner=3A?= =?utf-8?q?_switch_modeset_from_uj_to_bj_and_vice-versa_=28rev7=29?= In-Reply-To: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> References: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> Message-ID: <173579909961.1937047.18411805812340981144@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev7) URL : https://patchwork.freedesktop.org/series/138525/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12374_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12374_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +9 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/bat-adlp-7/igt at xe_evict@evict-beng-small.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/bat-adlp-7/igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html #### Possible fixes #### * igt at core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][3] ([Intel XE#3517]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-7/igt at core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/bat-adlp-7/igt at core_hotunplug@unbind-rebind.html * igt at kms_psr@psr-sprite-plane-onoff: - bat-adlp-7: [SKIP][5] ([Intel XE#455]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-7/igt at kms_psr@psr-sprite-plane-onoff.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/bat-adlp-7/igt at kms_psr@psr-sprite-plane-onoff.html [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12374 IGTPW_12374: e7b78f866c111426b8d4bbddb793229c1dd6482f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 2 07:10:39 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 07:10:39 -0000 Subject: =?utf-8?b?4pyXIFhlLkNJLkZ1bGw6IGZhaWx1cmUgZm9yIEluamVjdCBlcnJvcnMgZHVyaW5n?= =?utf-8?b?IHhlX2d1Y19jdF9zZW5kX3JlY3YgJiB4ZV9ndWNfbW1pb19zZW5kX3JlY3YgKHJl?= =?utf-8?b?djIp?= In-Reply-To: <20241230090210.17621-1-satyanarayana.k.v.p@intel.com> References: <20241230090210.17621-1-satyanarayana.k.v.p@intel.com> Message-ID: <173580183918.1945231.16036579327840229205@b555e5b46a47> == Series Details == Series: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev2) URL : https://patchwork.freedesktop.org/series/143054/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12373_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12373_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12373_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12373_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend at b-dp2: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at b-dp2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at kms_flip@flip-vs-suspend at b-dp2.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][5] +5 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_plane_cursor@overlay: - shard-dg2-set2: [PASS][6] -> [DMESG-FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@overlay.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_plane_cursor@overlay.html * igt at kms_plane_cursor@overlay at pipe-d-hdmi-a-6-size-256: - shard-dg2-set2: [PASS][8] -> [DMESG-WARN][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@overlay at pipe-d-hdmi-a-6-size-256.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_plane_cursor@overlay at pipe-d-hdmi-a-6-size-256.html * igt at kms_psr@psr2-basic: - shard-lnl: [PASS][10] -> [FAIL][11] +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_psr@psr2-basic.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at kms_psr@psr2-basic.html * igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-system-vram01: - shard-bmg: [PASS][12] -> [FAIL][13] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-system-vram01.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-system-vram01.html * {igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv} (NEW): - shard-dg2-set2: NOTRUN -> [FAIL][14] +2 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv.html - shard-lnl: NOTRUN -> [FAIL][15] +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv.html New tests --------- New tests have been introduced between XEIGT_8174_full and XEIGTPW_12373_full: ### New IGT tests (17) ### * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at a-dp4: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at b-dp4: - Statuses : 1 pass(s) - Exec time: [0.68] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - Statuses : 2 skip(s) - Exec time: [0.12, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.11] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.33] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.09, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - Statuses : 2 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.32] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv: - Statuses : 3 fail(s) - Exec time: [0.01, 0.03] s Known issues ------------ Here are the changes found in XEIGTPW_12373_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#3007]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3157]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-dg2-set2: [PASS][19] -> [FAIL][20] ([Intel XE#3908]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@async-flip-suspend-resume.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#3719]) +3 other tests fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#3767]) +11 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3279]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3658]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1428]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#367]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#367]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-d-dp-5.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +124 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2136] / [Intel XE#2231]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#3862]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#3432]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#2692]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1152]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_cdclk@plane-scaling at pipe-b-dp-5.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#306]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_content_protection@atomic-dpms at pipe-a-dp-5.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#307]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#3407]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_content_protection@lic-type-0 at pipe-a-dp-5.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2341]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#3278]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2321]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2321]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2320]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#877]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#1475]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2286]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#3383]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#2882]) +9 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#3321]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3321]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#3149]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301]) +9 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1421]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][78] -> [INCOMPLETE][79] ([Intel XE#2597]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2635]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][84] ([Intel XE#2597]) +1 other test incomplete [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at b-dp2: - shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#3664]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html * igt at kms_flip@nonexisting-fb-interruptible: - shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@nonexisting-fb-interruptible.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_flip@nonexisting-fb-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2293]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling (NEW): - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2311]) +16 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#651]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#2333]) +8 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +10 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#656]) +21 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2352]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2313]) +25 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1469]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#653]) +9 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1503]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3898]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#346]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2927]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][108] -> [FAIL][109] ([Intel XE#616]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#2685] / [Intel XE#3307]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@intel-max-src-size.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +14 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +8 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#908]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2499]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: [PASS][118] -> [SKIP][119] ([Intel XE#2446]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_properties@crtc-properties-legacy: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#3007]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_properties@crtc-properties-legacy.html - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2423] / [i915#2575]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_properties@crtc-properties-legacy.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-2/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2136]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-3/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#3414]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2413]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1435]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_vrr@flipline: - shard-lnl: [PASS][134] -> [FAIL][135] ([Intel XE#1522]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at kms_vrr@flipline.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-4/igt at kms_vrr@flipline.html - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#1499]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1499]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#756]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#756]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1091] / [Intel XE#2849]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][141] -> [INCOMPLETE][142] ([Intel XE#3918]) +1 other test incomplete [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][143] ([Intel XE#3869]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#3889]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#688]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-2/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][149] ([Intel XE#2364]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][150] ([Intel XE#1600]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1392]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2322]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@once-userptr: - shard-bmg: [PASS][153] -> [SKIP][154] ([Intel XE#1130]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_basic@once-userptr.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at xe_exec_basic@once-userptr.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#288]) +8 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1192]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#378]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-8/igt at xe_module_load@force-load.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-434/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1420] / [Intel XE#2838]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2284]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#584]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-2/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-6/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][163] -> [ABORT][164] ([Intel XE#1794]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_pm@s4-vm-bind-userptr.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#579]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#944]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-4/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#944]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#3342]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-5/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [PASS][169] -> [SKIP][170] ([Intel XE#1130]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_vm@large-misaligned-binds-2097152.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at xe_vm@large-misaligned-binds-2097152.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][171] ([Intel XE#2882]) -> [PASS][172] +3 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][173] ([Intel XE#3321]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][175] ([Intel XE#301]) -> [PASS][176] +2 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][177] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#2597]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][181] -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][183] -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][185] ([Intel XE#1035]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][187] ([Intel XE#3313]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][189] -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-1/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][191] ([Intel XE#2883]) -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-lnl-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][193] ([Intel XE#1473]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][195] ([Intel XE#3865]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-1/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][197] -> [PASS][198] +2 other tests pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-7/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][199] ([Intel XE#3781]) -> [INCOMPLETE][200] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][201] ([Intel XE#3781]) -> [INCOMPLETE][202] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-466/igt at kms_async_flips@crc-atomic.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][203] ([Intel XE#2907]) -> [SKIP][204] ([Intel XE#2136]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][205] ([Intel XE#2887]) -> [SKIP][206] ([Intel XE#2136] / [Intel XE#2231]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][207] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][208] ([Intel XE#2136]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-bmg: [SKIP][209] ([Intel XE#2252]) -> [SKIP][210] ([Intel XE#3007]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_chamelium_frames@hdmi-crc-single.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][211] ([Intel XE#373]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][213] ([Intel XE#1178]) -> [DMESG-FAIL][214] ([Intel XE#877]) +1 other test dmesg-fail [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_content_protection@legacy.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_content_protection@legacy.html * igt at kms_content_protection@type1: - shard-bmg: [SKIP][215] ([Intel XE#2341]) -> [SKIP][216] ([Intel XE#3007]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_content_protection@type1.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][217] ([Intel XE#308]) -> [SKIP][218] ([Intel XE#2423] / [i915#2575]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-bmg: [SKIP][219] ([Intel XE#2321]) -> [SKIP][220] ([Intel XE#3007]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_cursor_crc@cursor-onscreen-512x170.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][221] ([Intel XE#651]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][223] ([Intel XE#877]) -> [FAIL][224] ([Intel XE#2333]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][225] ([Intel XE#2311]) -> [SKIP][226] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html - shard-dg2-set2: [SKIP][227] ([Intel XE#651]) -> [SKIP][228] ([Intel XE#2136]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][229] ([Intel XE#2313]) -> [SKIP][230] ([Intel XE#2136] / [Intel XE#2231]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html - shard-dg2-set2: [SKIP][231] ([Intel XE#653]) -> [SKIP][232] ([Intel XE#2136]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_plane_lowres@tiling-y: - shard-dg2-set2: [SKIP][233] ([Intel XE#455]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_lowres@tiling-y.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_plane_lowres@tiling-y.html - shard-bmg: [SKIP][235] ([Intel XE#2393]) -> [SKIP][236] ([Intel XE#3007]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][237] ([Intel XE#361]) -> [SKIP][238] ([Intel XE#455]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][239] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][240] ([Intel XE#2446]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][241] ([Intel XE#1489]) -> [SKIP][242] ([Intel XE#2136]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-bmg: [SKIP][243] ([Intel XE#1489]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2231]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-bmg: [SKIP][245] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][246] ([Intel XE#2136] / [Intel XE#2231]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_psr@fbc-psr2-primary-render.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-bmg-8/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][247] ([Intel XE#362]) -> [FAIL][248] ([Intel XE#1729]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][249] ([Intel XE#330]) -> [SKIP][250] ([Intel XE#2423] / [i915#2575]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/shard-dg2-436/igt at kms_tv_load_detect@load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3664 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12373 IGTPW_12373: 14d546e49011de95895107e10dfea34c2a58a8a1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12373/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankit.k.nautiyal at intel.com Thu Jan 2 08:10:35 2025 From: ankit.k.nautiyal at intel.com (Nautiyal, Ankit K) Date: Thu, 2 Jan 2025 13:40:35 +0530 Subject: [PATCH i-g-t,v2 5/9] tests/kms_sharpness_filter: Add filter-tap subtest In-Reply-To: <20241231130241.69689-6-swati2.sharma@intel.com> References: <20241231130241.69689-1-swati2.sharma@intel.com> <20241231130241.69689-6-swati2.sharma@intel.com> Message-ID: On 12/31/2024 6:32 PM, Swati Sharma wrote: > Add subtest to verify that sharpness works with different > resolutions (implicitly different taps). Select different taps > based on the following conditions: > > TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 > TAP 5: (mode->hdisplay > 1920 && mode->hdisplay < 3840) && > (mode->vdisplay > 1080 && mode->vdisplay < 2160) > TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 > > v2: -Fix test description (Ankit) > -Fix tap selection conditions (Ankit) > -Change iterator (Ankit) > > Signed-off-by: Swati Sharma > --- > tests/kms_sharpness_filter.c | 81 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 81 insertions(+) > > diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c > index 2bc87374e..d1d6558c5 100644 > --- a/tests/kms_sharpness_filter.c > +++ b/tests/kms_sharpness_filter.c > @@ -37,6 +37,10 @@ > * > * SUBTEST: filter-toggle > * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. > + * > + * SUBTEST: filter-tap > + * Description: Verify content adaptive sharpness filter with resolution change, resolution change > + * will lead to selection of distinct taps. Perhaps rephrase to: Verify content adaptive sharpness filter with resolution change, which in turn will lead to selection of distinct taps. > */ > > IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > @@ -47,10 +51,15 @@ IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > * is seen without corruption for each subtest. > */ > > +#define TAP_3 3 > +#define TAP_5 5 > +#define TAP_7 7 > #define DISABLE_FILTER 0 > #define MIN_FILTER_STRENGTH 1 > #define MID_FILTER_STRENGTH 128 > #define MAX_FILTER_STRENGTH 255 > +#define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080) > +#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160) > #define NROUNDS 10 > > enum test_type { > @@ -60,6 +69,7 @@ enum test_type { > TEST_FILTER_FORMATS, > TEST_FILTER_STRENGTH, > TEST_FILTER_TOGGLE, > + TEST_FILTER_TAP, > }; > > const int filter_strength_list[] = { > @@ -69,6 +79,11 @@ const int filter_strength_list[] = { > (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, > MAX_FILTER_STRENGTH, > }; > +const int filter_tap_list[] = { > + TAP_3, > + TAP_5, > + TAP_7, > +}; > static const struct { > uint64_t modifier; > const char *name; > @@ -99,6 +114,7 @@ typedef struct { > igt_plane_t *plane[4]; > drmModeModeInfo *mode; > int filter_strength; > + int filter_tap; > uint64_t modifier; > const char *modifier_name; > uint32_t format; > @@ -151,6 +167,32 @@ static void cleanup(data_t *data) > cleanup_fbs(data); > } > > +static void get_modes_for_filter_taps(igt_output_t *output, drmModeModeInfo *mode[3]) > +{ > + drmModeConnector *connector = output->config.connector; > + int total_pixels = 0; > + > + /* > + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 > + * TAP 5: (mode->hdisplay > 1920 && mode->hdisplay < 3840) && > + * (mode->vdisplay > 1080 && mode->vdisplay < 2160) > + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 > + */ > + for (int i = 0; i < connector->count_modes; i++) { > + total_pixels = connector->modes[i].hdisplay * connector->modes[i].vdisplay; > + > + if (total_pixels <= MAX_PIXELS_FOR_3_TAP_FILTER) > + mode[0] = &connector->modes[i]; > + > + if (total_pixels > MAX_PIXELS_FOR_3_TAP_FILTER && > + total_pixels <= MAX_PIXELS_FOR_5_TAP_FILTER) > + mode[1] = &connector->modes[i]; > + > + if (total_pixels > MAX_PIXELS_FOR_5_TAP_FILTER) > + mode[2] = &connector->modes[i]; > + } > +} > + > static int test_filter_toggle(data_t *data) > { > int ret = 0; > @@ -239,6 +281,34 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > continue; > } > > + if (type == TEST_FILTER_TAP) { > + drmModeModeInfo *modes[3] = { NULL, NULL, NULL }; > + int num_taps = ARRAY_SIZE(filter_tap_list); > + > + igt_assert(num_taps == 3); > + > + get_modes_for_filter_taps(output, modes); > + for (int i = 0; i < 3; i++) { > + data->filter_tap = filter_tap_list[i]; > + if (!modes[i]) > + continue; > + data->mode = modes[i]; > + igt_info("Mode %dx%d@%d on output %s\n", data->mode->hdisplay, data->mode->vdisplay, > + data->mode->vrefresh, igt_output_name(data->output)); > + igt_output_override_mode(data->output, data->mode); > + > + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); > + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), > + data->output->name, name) > + test_sharpness_filter(data, type); > + } > + > + if (data->limited) > + break; > + > + continue; > + } > + > switch (type) { > case TEST_FILTER_BASIC: > snprintf(name, sizeof(name), "-basic"); > @@ -381,6 +451,17 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) > run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > } > > + igt_describe("Verify that following a resolution change, " > + "distict taps are selected."); We cannot directly verify if distinct taps are selected or not. We can verify that sharpness works with different resolutions and (indirectly different taps). With minor changes in documentation, this is: Reviewed-by: Ankit Nautiyal > + igt_subtest_with_dynamic("filter-tap") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_TAP); > + } > + > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); From ankit.k.nautiyal at intel.com Thu Jan 2 08:12:42 2025 From: ankit.k.nautiyal at intel.com (Nautiyal, Ankit K) Date: Thu, 2 Jan 2025 13:42:42 +0530 Subject: [PATCH i-g-t, v2 6/9] tests/kms_sharpness_filter: Add dpms/suspend subtests In-Reply-To: <20241231130241.69689-7-swati2.sharma@intel.com> References: <20241231130241.69689-1-swati2.sharma@intel.com> <20241231130241.69689-7-swati2.sharma@intel.com> Message-ID: On 12/31/2024 6:32 PM, Swati Sharma wrote: > Add subtests to verify CASF with DPMS and suspend. > > v2: -Added CRC based verification (Ankit) > > Signed-off-by: Swati Sharma Reviewed-by: Ankit Nautiyal > --- > tests/kms_sharpness_filter.c | 67 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 67 insertions(+) > > diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c > index d1d6558c5..32ad7a752 100644 > --- a/tests/kms_sharpness_filter.c > +++ b/tests/kms_sharpness_filter.c > @@ -41,6 +41,14 @@ > * SUBTEST: filter-tap > * Description: Verify content adaptive sharpness filter with resolution change, resolution change > * will lead to selection of distinct taps. > + * > + * SUBTEST: filter-dpms > + * Description: Verify content adaptive sharpness filter with DPMS. > + * Functionality: casf, dpms > + * > + * SUBTEST: filter-suspend > + * Description: Verify content adaptive sharpness filter with suspend. > + * Functionality: casf, suspend > */ > > IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > @@ -70,6 +78,8 @@ enum test_type { > TEST_FILTER_STRENGTH, > TEST_FILTER_TOGGLE, > TEST_FILTER_TAP, > + TEST_FILTER_DPMS, > + TEST_FILTER_SUSPEND, > }; > > const int filter_strength_list[] = { > @@ -212,9 +222,12 @@ static int test_filter_toggle(data_t *data) > > static void test_sharpness_filter(data_t *data, enum test_type type) > { > + igt_output_t *output = data->output; > drmModeModeInfo *mode = data->mode; > int height = mode->hdisplay; > int width = mode->vdisplay; > + igt_crc_t ref_crc, crc; > + igt_pipe_crc_t *pipe_crc = NULL; > int ret; > > data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); > @@ -238,11 +251,37 @@ static void test_sharpness_filter(data_t *data, enum test_type type) > > ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > > + if (type == TEST_FILTER_DPMS || type == TEST_FILTER_SUSPEND) { > + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe_id, > + IGT_PIPE_CRC_SOURCE_AUTO); > + igt_pipe_crc_collect_crc(pipe_crc, &ref_crc); > + } > + > + if (type == TEST_FILTER_DPMS) { > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_OFF); > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_ON); > + } > + > + if (type == TEST_FILTER_SUSPEND) > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > + SUSPEND_TEST_NONE); > + > + if (type == TEST_FILTER_DPMS || type == TEST_FILTER_SUSPEND) { > + igt_pipe_crc_collect_crc(pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &ref_crc); > + } > + > if (type == TEST_FILTER_TOGGLE) > ret |= test_filter_toggle(data); > > igt_assert_eq(ret, 0); > > + /* clean-up */ > + igt_pipe_crc_free(pipe_crc); > cleanup(data); > } > > @@ -328,6 +367,12 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > case TEST_FILTER_TOGGLE: > snprintf(name, sizeof(name), "-toggle"); > break; > + case TEST_FILTER_DPMS: > + snprintf(name, sizeof(name), "-dpms"); > + break; > + case TEST_FILTER_SUSPEND: > + snprintf(name, sizeof(name), "-suspend"); > + break; > default: > igt_assert(0); > } > @@ -462,6 +507,28 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) > run_sharpness_filter_test(&data, TEST_FILTER_TAP); > } > > + igt_describe("Verify content adaptive sharpness filter " > + "with DPMS."); > + igt_subtest_with_dynamic("filter-dpms") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with suspend."); > + igt_subtest_with_dynamic("filter-suspend") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); > + } > + > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); From patchwork at emeril.freedesktop.org Thu Jan 2 08:14:09 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 08:14:09 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fjoiner?= =?utf-8?q?=3A_switch_modeset_from_uj_to_bj_and_vice-versa_=28rev7=29?= In-Reply-To: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> References: <20250102054457.58520-1-santhosh.reddy.guddati@intel.com> Message-ID: <173580564937.1963408.2448015803963208617@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev7) URL : https://patchwork.freedesktop.org/series/138525/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12374_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12374_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12374_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12374_full: ### IGT changes ### #### Possible regressions #### * igt at kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-dp-2.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-bmg: [PASS][6] -> [FAIL][7] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-dpms-suspend.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-3/igt at kms_vblank@ts-continuation-dpms-suspend.html #### Warnings #### * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][8] ([Intel XE#1035]) -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][10] ([Intel XE#1473] / [Intel XE#2472]) -> [DMESG-FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html New tests --------- New tests have been introduced between XEIGT_8174_full and XEIGTPW_12374_full: ### New IGT tests (16) ### * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at a-dp4: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at b-dp4: - Statuses : 1 pass(s) - Exec time: [0.67] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.0, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.33] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - Statuses : 2 skip(s) - Exec time: [0.11, 0.12] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.33] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.35] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.32] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - Statuses : 2 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.32] s * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12374_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#1885]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at core_hotunplug@hotreplug.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at core_hotunplug@hotreplug.html - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1885]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at core_hotunplug@hotreplug.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at core_hotunplug@hotreplug.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3157]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#3719]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3279]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3658]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136] / [Intel XE#2231]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@linear-16bpp-rotate-180.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-180.html - shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2136]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@linear-16bpp-rotate-180.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-1/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#2136] / [Intel XE#2351]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1428]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +6 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +111 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-434/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-hdmi-a-3: - shard-bmg: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3862]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-hdmi-a-3.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#2692]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5.html * igt at kms_cdclk@mode-transition at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#314]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_cdclk@mode-transition at pipe-d-dp-5.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#306]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-3/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1178]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#307]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2341]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3278]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1424]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#455]) +8 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2320]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-dg2-set2: [PASS][60] -> [SKIP][61] ([Intel XE#2423] / [i915#2575]) +22 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-rapid-movement-64x21.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-64x21.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-7/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#877]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2286]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#2141]) +2 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3383]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2244]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-dg2-set2: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2594]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-434/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#2882]) +5 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at a-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#301]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at a-dp5.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#301]) +3 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#3007]) +20 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@flip-vs-panning-vs-hang.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_flip@flip-vs-panning-vs-hang.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][81] ([Intel XE#2597]) +2 other tests incomplete [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at b-hdmi-a3: - shard-bmg: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2597]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at b-hdmi-a3.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_flip@flip-vs-suspend at b-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#3007]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling (NEW): - shard-dg2-set2: [SKIP][85] ([Intel XE#455]) -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2351]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-bmg: [SKIP][87] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][88] ([Intel XE#2136] / [Intel XE#2231]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling (NEW): - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2293]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2311]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#651]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#2333]) +9 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2136]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#656]) +18 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#651]) +10 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2352]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2313]) +22 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1469]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#653]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1503]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-3/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#3898]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#346]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2927]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2927]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [INCOMPLETE][111] ([Intel XE#3663]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +14 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +8 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#718]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#908]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2499]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2893]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#3414]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2413]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1435]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#362]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2450]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][133] -> [FAIL][134] ([Intel XE#2159]) +1 other test fail [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1499]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1499]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#756]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#756]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][139] ([Intel XE#3869]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#3889]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-2/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-7/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#688]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][145] ([Intel XE#2364]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][146] ([Intel XE#1600]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_balancer@once-parallel-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1130]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_exec_balancer@once-parallel-userptr.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1392]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2322]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@once-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1130]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at xe_exec_fault_mode@once-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#1130]) +34 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#288]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1192]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-1/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#378]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at xe_module_load@force-load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][156] -> [FAIL][157] ([Intel XE#3546]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@many-reload.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at xe_module_load@many-reload.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1420] / [Intel XE#2838]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-2/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@prime-self-import-coh: - shard-dg2-set2: [PASS][160] -> [SKIP][161] ([Intel XE#1130]) +30 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pat@prime-self-import-coh.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_pat@prime-self-import-coh.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2284]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#584]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-6/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-3/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][165] -> [ABORT][166] ([Intel XE#1794]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_pm@s4-mocs.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#579]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#944]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#944]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-2/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#944]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#3342]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-2/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][172] ([Intel XE#877]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][174] ([Intel XE#3321]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][176] ([Intel XE#301]) -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][178] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][180] ([Intel XE#2597]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][182] ([Intel XE#2882]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][184] -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][186] -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][188] ([Intel XE#361]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][190] ([Intel XE#3313]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_sequence@get-forked-busy.html * igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-4/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][194] -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][196] ([Intel XE#2883]) -> [PASS][197] +1 other test pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-4/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][198] ([Intel XE#1473]) -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][200] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][202] ([Intel XE#3865]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][204] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-lnl-5/igt at xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][206] ([Intel XE#3781]) -> [INCOMPLETE][207] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-8/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][208] ([Intel XE#3781]) -> [INCOMPLETE][209] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][210] ([Intel XE#2327]) -> [SKIP][211] ([Intel XE#2136] / [Intel XE#2231]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][212] ([Intel XE#316]) -> [SKIP][213] ([Intel XE#2136] / [Intel XE#2351]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-bmg: [SKIP][214] ([Intel XE#1124]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html - shard-dg2-set2: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#2136]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][218] ([Intel XE#367]) -> [SKIP][219] ([Intel XE#2423] / [i915#2575]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][220] ([Intel XE#367]) -> [SKIP][221] ([Intel XE#3007]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][222] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][223] ([Intel XE#2136]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][224] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][225] ([Intel XE#2136] / [Intel XE#2351]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][226] ([Intel XE#2887]) -> [SKIP][227] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][228] ([Intel XE#2252]) -> [SKIP][229] ([Intel XE#3007]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_chamelium_audio@hdmi-audio-edid.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: [SKIP][230] ([Intel XE#373]) -> [SKIP][231] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: [SKIP][232] ([Intel XE#2320]) -> [SKIP][233] ([Intel XE#3007]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_crc@cursor-onscreen-max-size.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_cursor_crc@cursor-onscreen-max-size.html - shard-dg2-set2: [SKIP][234] ([Intel XE#455]) -> [SKIP][235] ([Intel XE#2423] / [i915#2575]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-max-size.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-max-size.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][236] ([Intel XE#2244]) -> [SKIP][237] ([Intel XE#2136] / [Intel XE#2231]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: [SKIP][238] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][240] ([Intel XE#455]) -> [SKIP][241] ([Intel XE#2136]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][242] ([i915#5274]) -> [SKIP][243] ([Intel XE#2423] / [i915#2575]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_force_connector_basic@prune-stale-modes.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-bmg: [FAIL][244] ([Intel XE#2333]) -> [SKIP][245] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][246] ([Intel XE#2311]) -> [SKIP][247] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][248] ([Intel XE#651]) -> [SKIP][249] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][250] ([Intel XE#651]) -> [SKIP][251] ([Intel XE#2136]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][252] ([Intel XE#2313]) -> [SKIP][253] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][254] ([Intel XE#653]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][256] ([Intel XE#653]) -> [SKIP][257] ([Intel XE#2136]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][258] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][259] ([Intel XE#3544]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][260] ([Intel XE#2392]) -> [SKIP][261] ([Intel XE#2136] / [Intel XE#2231]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html - shard-dg2-set2: [SKIP][262] ([Intel XE#1129]) -> [SKIP][263] ([Intel XE#2136]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_pm_dc@dc5-psr.html * igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][264] ([Intel XE#1489]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-dg2-set2: [SKIP][266] ([Intel XE#1489]) -> [SKIP][267] ([Intel XE#2136]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr@fbc-psr-cursor-render: - shard-bmg: [SKIP][268] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][269] ([Intel XE#2136] / [Intel XE#2231]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr@fbc-psr-cursor-render.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_psr@fbc-psr-cursor-render.html * igt at kms_psr@psr2-primary-render: - shard-dg2-set2: [SKIP][270] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][271] ([Intel XE#2136]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr2-primary-render.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at kms_psr@psr2-primary-render.html - shard-bmg: [SKIP][272] ([Intel XE#2234]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2231]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr@psr2-primary-render.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at kms_psr@psr2-primary-render.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][274] ([Intel XE#2905]) -> [SKIP][275] ([Intel XE#1130]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][276] ([Intel XE#2905]) -> [SKIP][277] ([Intel XE#1130]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: [SKIP][278] ([Intel XE#2322]) -> [SKIP][279] ([Intel XE#1130]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][280] ([Intel XE#288]) -> [SKIP][281] ([Intel XE#1130]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: [SKIP][282] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][283] ([Intel XE#1130]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_oa@disabled-read-error.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_oa@disabled-read-error.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][284] ([Intel XE#944]) -> [SKIP][285] ([Intel XE#1130]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_query@multigpu-query-uc-fw-version-guc.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: [SKIP][286] ([Intel XE#944]) -> [SKIP][287] ([Intel XE#1130]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_query@multigpu-query-uc-fw-version-guc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/shard-bmg-5/igt at xe_query@multigpu-query-uc-fw-version-guc.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12374 IGTPW_12374: e7b78f866c111426b8d4bbddb793229c1dd6482f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12374/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankit.k.nautiyal at intel.com Thu Jan 2 08:14:18 2025 From: ankit.k.nautiyal at intel.com (Nautiyal, Ankit K) Date: Thu, 2 Jan 2025 13:44:18 +0530 Subject: [PATCH i-g-t,v2 7/9] tests/kms_sharpness_filter: Add scaler subtests In-Reply-To: <20241231130241.69689-8-swati2.sharma@intel.com> References: <20241231130241.69689-1-swati2.sharma@intel.com> <20241231130241.69689-8-swati2.sharma@intel.com> Message-ID: On 12/31/2024 6:32 PM, Swati Sharma wrote: > Add upscale/downscale subtests to apply plane scaler and CASF > together. > > v2: -Improve description (Ankit) > -Remove unused var (Ankit) > > Signed-off-by: Swati Sharma Reviewed-by: Ankit Nautiyal > --- > tests/kms_sharpness_filter.c | 68 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 68 insertions(+) > > diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c > index 32ad7a752..3451a9db4 100644 > --- a/tests/kms_sharpness_filter.c > +++ b/tests/kms_sharpness_filter.c > @@ -49,6 +49,14 @@ > * SUBTEST: filter-suspend > * Description: Verify content adaptive sharpness filter with suspend. > * Functionality: casf, suspend > + * > + * SUBTEST: filter-scaler-upscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled during upscaling. > + * Functionality: casf, scaling > + * > + * SUBTEST: filter-scaler-downscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled during downscaling. > + * Functionality: casf, scaling > */ > > IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > @@ -70,6 +78,9 @@ IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > #define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160) > #define NROUNDS 10 > > +#define SET_PLANES ((type == TEST_FILTER_UPSCALE) \ > + || (type == TEST_FILTER_DOWNSCALE)) > + > enum test_type { > TEST_FILTER_BASIC, > TEST_FILTER_MODIFIERS, > @@ -80,6 +91,8 @@ enum test_type { > TEST_FILTER_TAP, > TEST_FILTER_DPMS, > TEST_FILTER_SUSPEND, > + TEST_FILTER_UPSCALE, > + TEST_FILTER_DOWNSCALE, > }; > > const int filter_strength_list[] = { > @@ -170,6 +183,26 @@ static void cleanup_fbs(data_t *data) > igt_remove_fb(data->drm_fd, &data->fb[i]); > } > > +static void set_planes(data_t *data, enum test_type type) > +{ > + drmModeModeInfo *mode = data->mode; > + igt_output_t *output = data->output; > + > + data->plane[1] = igt_output_get_plane(output, 1); > + > + if (type == TEST_FILTER_UPSCALE) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_FILTER_DOWNSCALE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); > + } > +} > + > static void cleanup(data_t *data) > { > igt_display_reset(&data->display); > @@ -244,6 +277,9 @@ static void test_sharpness_filter(data_t *data, enum test_type type) > igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > } > > + if (SET_PLANES) > + set_planes(data, type); > + > set_filter_strength_on_pipe(data); > > if (data->filter_strength != 0) > @@ -278,6 +314,10 @@ static void test_sharpness_filter(data_t *data, enum test_type type) > if (type == TEST_FILTER_TOGGLE) > ret |= test_filter_toggle(data); > > + if (type == TEST_FILTER_DOWNSCALE) > + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL, > + "Scaling op not supported, cdclk limits might be exceeded.\n"); > + > igt_assert_eq(ret, 0); > > /* clean-up */ > @@ -373,6 +413,12 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > case TEST_FILTER_SUSPEND: > snprintf(name, sizeof(name), "-suspend"); > break; > + case TEST_FILTER_UPSCALE: > + snprintf(name, sizeof(name), "-upscale"); > + break; > + case TEST_FILTER_DOWNSCALE: > + snprintf(name, sizeof(name), "-downscale"); > + break; > default: > igt_assert(0); > } > @@ -529,6 +575,28 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) > run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); > } > > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-upscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-downscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); > + } > + > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); From chiahsuan.chung at amd.com Thu Jan 2 10:37:26 2025 From: chiahsuan.chung at amd.com (Tom Chung) Date: Thu, 2 Jan 2025 18:37:26 +0800 Subject: [PATCH i-g-t] tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test Message-ID: <20250102103741.2105-1-chiahsuan.chung@amd.com> [Why] If the sink side support VRR, override the EDID may cause sink side cannot light up. [How] Just parsing the VRR range from sink side EDID without override it if the sink side support VRR. Signed-off-by: Tom Chung --- tests/amdgpu/amd_vrr_range.c | 125 ++++++++++++++++++++++++++++------- 1 file changed, 102 insertions(+), 23 deletions(-) diff --git a/tests/amdgpu/amd_vrr_range.c b/tests/amdgpu/amd_vrr_range.c index 79db6f9c4..15bebbfa7 100644 --- a/tests/amdgpu/amd_vrr_range.c +++ b/tests/amdgpu/amd_vrr_range.c @@ -29,20 +29,23 @@ IGT_TEST_DESCRIPTION("Test EDID parsing and debugfs reporting on Freesync displa /* Maximumm pipes on any AMD ASIC. */ #define MAX_PIPES 6 +#define EDID_SIZE 256 +#define EDID_PATH "/sys/class/drm/card0-%s/edid" /* Common test data. */ +struct vrr_range { + unsigned int min; + unsigned int max; +}; + typedef struct data { igt_display_t display; igt_plane_t *primary; igt_output_t *output[MAX_PIPES]; int fd; + struct vrr_range expected_range; } data_t; -typedef struct range { - unsigned int min; - unsigned int max; -} range_t; - /* Test flags. */ enum { TEST_NONE = 1 << 0, @@ -53,7 +56,7 @@ struct { const char *name; uint32_t connector_type; const unsigned char edid[256]; - const range_t range; + const struct vrr_range range; } edid_database[] = { { /* EDID Version 1.4. Timing requires 2 DP lanes. */ @@ -212,12 +215,12 @@ static int find_test_edid_index(uint32_t connector_type) } /* Returns the min and max vrr range from the connector debugfs. */ -static range_t get_freesync_range(data_t *data, igt_output_t *output) +static struct vrr_range get_freesync_range(data_t *data, igt_output_t *output) { char buf[256]; char *start_loc; int fd, res; - range_t range; + struct vrr_range range; fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY); igt_assert(fd >= 0); @@ -249,13 +252,84 @@ static void trigger_edid_parse(data_t *data, igt_output_t *output, uint32_t test usleep(1500000); } +/* Returns true if an output supports VRR. */ +static bool has_vrr(igt_output_t *output) +{ + return igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) && + igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE); +} + +static void parse_vrr_gange_from_edid(data_t *data, uint8_t *edid, int index) +{ + bool max_rate_offset = false; + bool min_rate_offset = false; + + /* Check Bytes 4 Vertical rate offsets + * Vertical rate offsets: + * 00 = none; + * 10 = +255 Hz for max. rate; + * 11 = +255 Hz for max. and min. rates. + */ + if ((edid[index + 4] & 0b10) == 0b10) + max_rate_offset = true; + else if ((edid[index + 4] & 0b11) == 0b11) { + max_rate_offset = true; + min_rate_offset = true; + } + + /* Bytes 5 Min vertical field rate (1?255 Hz; 256?510 Hz, if offset).*/ + data->expected_range.min = + min_rate_offset ? edid[index + 5] + 255 : edid[index + 5]; + /* Bytes 6 Max vertical field rate (1?255 Hz; 256?510 Hz, if offset).*/ + data->expected_range.max = + max_rate_offset ? edid[index + 6] + 255 : edid[index + 6]; +} + +static bool find_vrr_range_from_edid(data_t *data, igt_output_t *output) +{ + char edid_path[PATH_MAX] = "\0"; + uint8_t sink_edid[EDID_SIZE] = "\0"; + const uint8_t range_limits_head[4] = {0x00, 0x00, 0x00, 0xFD}; + const unsigned int range_head_size = sizeof(range_limits_head); + int fd, i, read_size, index = 0; + + /* Get EDID */ + igt_assert(snprintf(edid_path, PATH_MAX, EDID_PATH, + output->name) < PATH_MAX); + + fd = open(edid_path, O_RDONLY); + if (fd == -1) + return false; + + read_size = read(fd, sink_edid, EDID_SIZE); + close(fd); + if (read_size < 0) + return false; + + /* Find Display Range Limits Descriptor block */ + while (index < EDID_SIZE - range_head_size) { + for (i = 0; i < range_head_size; i++) { + if (sink_edid[index+i] != range_limits_head[i]) + break; + else if (i == range_head_size-1) { + /* Found Display Range Limits Descriptor block */ + parse_vrr_gange_from_edid(data, sink_edid, index); + return true; + } + } + index++; + } + + return false; +} + /* Check if EDID parsing is correctly reporting Freesync capability * by overriding EDID with ones from golden sample. */ static void test_freesync_parsing_base(data_t *data, uint32_t test_flags) { const struct edid *edid; - range_t range, expected_range; + struct vrr_range range, expected_range; igt_output_t *output; int j, test_conn_cnt = 0; igt_display_t *display = &data->display; @@ -277,15 +351,27 @@ static void test_freesync_parsing_base(data_t *data, uint32_t test_flags) if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) igt_amd_allow_edp_hotplug_detect(data->fd, output->name, true); - /* force to use hard coded VRR EDID */ - kmstest_force_edid(data->fd, output->config.connector, edid); + if (has_vrr(output)) { + /* A VRR sink, just parsing range from EDID directly */ + trigger_edid_parse(data, output, test_flags); - trigger_edid_parse(data, output, test_flags); + igt_assert_f(find_vrr_range_from_edid(data, output), + "Cannot parsing VRR range from EDID\n"); - range = get_freesync_range(data, output); + expected_range.min = data->expected_range.min; + expected_range.max = data->expected_range.max; + range = get_freesync_range(data, output); + } else { + /* force to use hard coded VRR EDID */ + kmstest_force_edid(data->fd, output->config.connector, edid); - /* undo EDID override. re-parse EDID of display */ - kmstest_force_edid(data->fd, output->config.connector, NULL); + trigger_edid_parse(data, output, test_flags); + + range = get_freesync_range(data, output); + + /* undo EDID override. re-parse EDID of display */ + kmstest_force_edid(data->fd, output->config.connector, NULL); + } igt_amd_trigger_hotplug(data->fd, output->name); @@ -317,20 +403,13 @@ static inline void test_freesync_parsing_suspend(data_t *data) test_freesync_parsing_base(data, TEST_SUSPEND); } -/* Returns true if an output supports VRR. */ -static bool has_vrr(igt_output_t *output) -{ - return igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) && - igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE); -} - /* More relaxed checking on Freesync capability. * Only checks if frame rate range is within legal range. * Display under test MUST be VRR capable. */ static void test_freesync_range_base(data_t *data, uint32_t test_flags) { - range_t range; + struct vrr_range range; igt_output_t *output; int test_conn_cnt = 0; igt_display_t *display = &data->display; -- 2.43.0 From patchwork at emeril.freedesktop.org Thu Jan 2 11:51:22 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 11:51:22 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/amdgpu/amd=5Fvrr=5Fra?= =?utf-8?q?nge=3A_Fix_panel_cannot_light_up_after_test?= In-Reply-To: <20250102103741.2105-1-chiahsuan.chung@amd.com> References: <20250102103741.2105-1-chiahsuan.chung@amd.com> Message-ID: <173581868210.2022203.17554435600508648722@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test URL : https://patchwork.freedesktop.org/series/143059/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12375_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12375_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#1033]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-7/igt at kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/bat-adlp-7/igt at kms_frontbuffer_tracking@basic.html * igt at kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][3] -> [SKIP][4] ([Intel XE#455]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-7/igt at kms_psr@psr-cursor-plane-move.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/bat-adlp-7/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr-primary-page-flip at edp-1: - bat-adlp-7: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#3517]) +1 other test dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-7/igt at kms_psr@psr-primary-page-flip at edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/bat-adlp-7/igt at kms_psr@psr-primary-page-flip at edp-1.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind: - bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#288]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/bat-adlp-7/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12375 IGTPW_12375: 68d66f27cde01eabd5c007ba0c20c15c7c7716b0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pranay.samala at intel.com Thu Jan 2 13:12:47 2025 From: pranay.samala at intel.com (Pranay Samala) Date: Thu, 2 Jan 2025 18:42:47 +0530 Subject: [PATCH i-g-t] tests/intel/kms_dirtyfb: Add logs to skips Message-ID: <20250102131247.258388-1-pranay.samala@intel.com> Having some logs for test failures & skips would make debugging much easier. Signed-off-by: Pranay Samala --- tests/intel/kms_dirtyfb.c | 37 ++++++++++++++++++++++++++++--------- 1 file changed, 28 insertions(+), 9 deletions(-) diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c index 35df9be3b..19dd283d5 100644 --- a/tests/intel/kms_dirtyfb.c +++ b/tests/intel/kms_dirtyfb.c @@ -102,21 +102,40 @@ static bool check_support(data_t *data) case FEATURE_NONE: return true; case FEATURE_FBC: - if (!intel_fbc_supported_on_chipset(data->drm_fd, data->pipe)) + if (!intel_fbc_supported_on_chipset(data->drm_fd, data->pipe)) { + igt_info("FBC is not supported on this chipset\n"); return false; + } + + if (!intel_fbc_plane_size_supported(data->drm_fd, + data->mode->hdisplay, + data->mode->vdisplay)) { + igt_info("Plane size not supported as per FBC size restrictions\n"); + return false; + } + return true; - return intel_fbc_plane_size_supported(data->drm_fd, - data->mode->hdisplay, - data->mode->vdisplay); case FEATURE_PSR: if (data->output->config.connector->connector_type != - DRM_MODE_CONNECTOR_eDP) + DRM_MODE_CONNECTOR_eDP) { + igt_info("Output is not an eDP\n"); + return false; + } + if (!psr_sink_support(data->drm_fd, data->debugfs_fd, + PSR_MODE_1, NULL)) { + igt_info("Output doesn't supports PSR\n"); return false; - return psr_sink_support(data->drm_fd, data->debugfs_fd, - PSR_MODE_1, NULL); + } + return true; + case FEATURE_DRRS: - return intel_is_drrs_supported(data->drm_fd, data->pipe) && - intel_output_has_drrs(data->drm_fd, data->output); + if (!(intel_is_drrs_supported(data->drm_fd, data->pipe) && + intel_output_has_drrs(data->drm_fd, data->output))) { + igt_info("Output doesn't supports DRRS\n"); + return false; + } + return true; + case FEATURE_DEFAULT: return true; default: -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 2 13:22:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 13:22:49 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_tests/intel/kms=5Fdirty?= =?utf-8?q?fb=3A_Add_logs_to_skips?= In-Reply-To: <20250102131247.258388-1-pranay.samala@intel.com> References: <20250102131247.258388-1-pranay.samala@intel.com> Message-ID: <173582416906.2041221.4053553759937607196@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips URL : https://patchwork.freedesktop.org/series/143063/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1338365 for the overview. containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/68766786): Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1735824031:get_sources section_start:1735824031:download_artifacts Downloading artifacts Downloading artifacts for build:tests-fedora (68766771)... Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=68766771 responseStatus=200 OK token=glcbt-64 section_end:1735824040:download_artifacts section_start:1735824040:step_script Executing "step_script" stage of the job script Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah at sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... section_end:1735824045:step_script section_start:1735824045:cleanup_file_variables Cleaning up project directory and file based variables section_end:1735824046:cleanup_file_variables ERROR: Job failed: exit code 137 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1338365 From patchwork at emeril.freedesktop.org Thu Jan 2 13:44:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 13:44:30 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_logs_to_skips?= In-Reply-To: <20250102131247.258388-1-pranay.samala@intel.com> References: <20250102131247.258388-1-pranay.samala@intel.com> Message-ID: <173582547051.2041201.848463146328204163@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips URL : https://patchwork.freedesktop.org/series/143063/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12376_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_8174 -> IGTPW_12376 IGTPW_12376: 2f8ddabf274fb24c38be71f39a28fde8a67c19f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 2 13:54:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 13:54:41 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/amdgpu/amd=5Fvrr=5Fr?= =?utf-8?q?ange=3A_Fix_panel_cannot_light_up_after_test?= In-Reply-To: <20250102103741.2105-1-chiahsuan.chung@amd.com> References: <20250102103741.2105-1-chiahsuan.chung@amd.com> Message-ID: <173582608160.2051234.959302177907662583@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test URL : https://patchwork.freedesktop.org/series/143059/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12375_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12375_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12375_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12375_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at xe_pm_residency@cpg-basic: - shard-bmg: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_pm_residency@cpg-basic.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at xe_pm_residency@cpg-basic.html New tests --------- New tests have been introduced between XEIGT_8174_full and XEIGTPW_12375_full: ### New IGT tests (15) ### * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at a-dp4: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at b-dp4: - Statuses : 1 pass(s) - Exec time: [0.67] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - Statuses : 2 skip(s) - Exec time: [0.12, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - Statuses : 2 skip(s) - Exec time: [0.14, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.08, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.0, 0.35] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.11] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.36] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.35] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s Known issues ------------ Here are the changes found in XEIGTPW_12375_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_setmaster_vs_auth: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#2423]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at core_setmaster_vs_auth.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at core_setmaster_vs_auth.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3157]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-5/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@unused-modifier: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#3007]) +8 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_addfb_basic@unused-modifier.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_addfb_basic@unused-modifier.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3279]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3658]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [INCOMPLETE][15] ([Intel XE#3225]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-8/igt at kms_big_fb@x-tiled-32bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1428]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +8 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +127 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3432]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#2136]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1727]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#1727] / [Intel XE#3113]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +9 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#373]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#1178]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_content_protection@atomic-dpms at pipe-a-dp-5.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#3407]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_content_protection@lic-type-0 at pipe-a-dp-5.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2341]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3278]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2321]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2321]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-5/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#309]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#877]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2286]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#2141]) +2 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3383]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#3321]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][57] -> [FAIL][58] ([Intel XE#301]) +4 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#3321]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][61] ([Intel XE#3321]) +3 other tests fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#3879]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#3664]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#2882]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-modeset-vs-hang: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-modeset-vs-hang.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_flip@flip-vs-modeset-vs-hang.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2293]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling (NEW): - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401] / [Intel XE#1745]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397] / [Intel XE#1745]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling (NEW): - shard-bmg: [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][78] ([Intel XE#2136] / [Intel XE#2231]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html - shard-dg2-set2: [SKIP][79] ([Intel XE#455]) -> [SKIP][80] ([Intel XE#2136]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2311]) +17 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#651]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2333]) +7 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#651]) +11 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +19 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2352]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +26 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1469]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2136] / [Intel XE#2231]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1503]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-7/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#3898]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#346]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-5/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2927]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2927]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#2685] / [Intel XE#3307]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@intel-max-src-size.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +14 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#718]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#908]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2499]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#2446]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_rpm@legacy-planes.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_pm_rpm@legacy-planes.html - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#2446]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_pm_rpm@legacy-planes.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_pm_rpm@legacy-planes.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2893]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-6/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1489]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1406]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-6/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@pr-suspend: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2136]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_psr@psr-primary-render.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#3414]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2413]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#362]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2450]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][125] -> [INCOMPLETE][126] ([Intel XE#3864]) +1 other test incomplete [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1499]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1499]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#756]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1091] / [Intel XE#2849]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][131] ([Intel XE#3869]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#3889]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-5/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-beng-large-cm: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) +18 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-large-cm.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at xe_evict@evict-beng-large-cm.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#688]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-8/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][139] ([Intel XE#1600]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2322]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1392]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_compute_mode@twice-basic: - shard-bmg: [PASS][142] -> [SKIP][143] ([Intel XE#1130]) +19 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_exec_compute_mode@twice-basic.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at xe_exec_compute_mode@twice-basic.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#288]) +6 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt at xe_exec_fault_mode@many-execqueues-userptr-imm: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1130]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-imm.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1192]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-7/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#378]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-2/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1420] / [Intel XE#2838]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2284]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-4/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#584]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-8/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-mocs: - shard-bmg: [PASS][152] -> [INCOMPLETE][153] ([Intel XE#569]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm@s3-mocs.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at xe_pm@s3-mocs.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-3/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][155] -> [ABORT][156] ([Intel XE#1794]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_pm@s4-mocs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#579]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#944]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-1/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#944]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3342]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-4/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-misaligned-binds-33554432: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#1130]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at xe_vm@large-misaligned-binds-33554432.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [FAIL][163] ([Intel XE#3321]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][165] ([Intel XE#2882]) -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][167] -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_hdr@bpc-switch.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][169] ([Intel XE#1035]) -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][171] ([Intel XE#718]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][173] ([Intel XE#3313]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_sequence@get-forked-busy.html * igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][177] ([Intel XE#899]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][179] ([Intel XE#1473]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][181] ([Intel XE#3865]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][183] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-lnl-7/igt at xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][185] ([Intel XE#3781]) -> [INCOMPLETE][186] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-3/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#3781]) -> [INCOMPLETE][188] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][189] ([Intel XE#2327]) -> [SKIP][190] ([Intel XE#2136] / [Intel XE#2231]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-90.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][191] ([Intel XE#316]) -> [SKIP][192] ([Intel XE#2136]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-90.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][193] ([Intel XE#1124]) -> [SKIP][194] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg2-set2: [SKIP][195] ([Intel XE#1124]) -> [SKIP][196] ([Intel XE#2136]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][197] ([Intel XE#367]) -> [SKIP][198] ([Intel XE#2423] / [i915#2575]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][199] ([Intel XE#367]) -> [SKIP][200] ([Intel XE#3007]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][201] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][202] ([Intel XE#2136] / [Intel XE#2351]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][203] ([Intel XE#2907]) -> [SKIP][204] ([Intel XE#2136]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][205] ([Intel XE#2887]) -> [SKIP][206] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: [SKIP][207] ([Intel XE#2252]) -> [SKIP][208] ([Intel XE#3007]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_chamelium_frames@hdmi-aspect-ratio.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_chamelium_frames@hdmi-aspect-ratio.html - shard-dg2-set2: [SKIP][209] ([Intel XE#373]) -> [SKIP][210] ([Intel XE#2423] / [i915#2575]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_frames@hdmi-aspect-ratio.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_chamelium_frames@hdmi-aspect-ratio.html * igt at kms_content_protection@type1: - shard-bmg: [SKIP][211] ([Intel XE#2341]) -> [SKIP][212] ([Intel XE#3007]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_content_protection@type1.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_content_protection@type1.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][213] ([Intel XE#2244]) -> [SKIP][214] ([Intel XE#2136] / [Intel XE#2231]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg2-set2: [SKIP][215] ([Intel XE#455]) -> [SKIP][216] ([Intel XE#2136]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_dsc@dsc-fractional-bpp.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][217] ([Intel XE#2597]) -> [SKIP][218] ([Intel XE#3007]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][219] ([Intel XE#877]) -> [FAIL][220] ([Intel XE#2333]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][221] ([Intel XE#2333]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [SKIP][223] ([Intel XE#2311]) -> [SKIP][224] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html - shard-dg2-set2: [SKIP][225] ([Intel XE#651]) -> [SKIP][226] ([Intel XE#2136]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][227] ([Intel XE#651]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2351]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][229] ([Intel XE#653]) -> [SKIP][230] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][231] ([Intel XE#2313]) -> [SKIP][232] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][233] ([Intel XE#653]) -> [SKIP][234] ([Intel XE#2136]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][235] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][236] ([Intel XE#3544]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][237] ([Intel XE#361]) -> [SKIP][238] ([Intel XE#455]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][239] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2351]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@pr-primary-page-flip.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_psr@pr-primary-page-flip.html * igt at kms_psr@psr2-cursor-plane-move: - shard-bmg: [SKIP][241] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][242] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr@psr2-cursor-plane-move.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_psr@psr2-cursor-plane-move.html - shard-dg2-set2: [SKIP][243] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][244] ([Intel XE#2136]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr2-cursor-plane-move.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_psr@psr2-cursor-plane-move.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][245] ([Intel XE#362]) -> [FAIL][246] ([Intel XE#1729]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][247] ([Intel XE#1500]) -> [SKIP][248] ([Intel XE#362]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2-set2: [SKIP][249] ([Intel XE#455]) -> [SKIP][250] ([Intel XE#2423] / [i915#2575]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_vrr@flip-basic-fastset.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at kms_vrr@flip-basic-fastset.html - shard-bmg: [SKIP][251] ([Intel XE#1499]) -> [SKIP][252] ([Intel XE#3007]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_vrr@flip-basic-fastset.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at kms_vrr@flip-basic-fastset.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][253] ([Intel XE#2905]) -> [SKIP][254] ([Intel XE#1130]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-close.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at xe_eudebug@basic-close.html - shard-bmg: [SKIP][255] ([Intel XE#2905]) -> [SKIP][256] ([Intel XE#1130]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_eudebug@basic-close.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at xe_eudebug@basic-close.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][257] ([Intel XE#1473]) -> [FAIL][258] ([Intel XE#1000]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-5/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][259] ([Intel XE#2322]) -> [SKIP][260] ([Intel XE#1130]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-userptr: - shard-dg2-set2: [SKIP][261] ([Intel XE#288]) -> [SKIP][262] ([Intel XE#1130]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_fault_mode@many-userptr.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at xe_exec_fault_mode@many-userptr.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: [SKIP][263] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][264] ([Intel XE#1130]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_oa@disabled-read-error.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/shard-dg2-434/igt at xe_oa@disabled-read-error.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3664 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12375 IGTPW_12375: 68d66f27cde01eabd5c007ba0c20c15c7c7716b0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12375/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 2 15:09:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 15:09:00 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_logs_to_skips?= In-Reply-To: <20250102131247.258388-1-pranay.samala@intel.com> References: <20250102131247.258388-1-pranay.samala@intel.com> Message-ID: <173583054061.2060155.10646528673470511197@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips URL : https://patchwork.freedesktop.org/series/143063/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12376_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12376_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12376_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12376_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-dp-2: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-dp-2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-dp-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-5.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_flip@blocking-absolute-wf_vblank at c-dp2: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@blocking-absolute-wf_vblank at c-dp2.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_flip@blocking-absolute-wf_vblank at c-dp2.html * igt at kms_hdr@static-swap: - shard-dg2-set2: [PASS][8] -> [FAIL][9] +2 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_hdr@static-swap.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_hdr@static-swap.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [FAIL][10] +2 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_pipe_crc_basic@suspend-read-crc.html #### Warnings #### * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][11] ([Intel XE#3865]) -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_gt_freq@freq_suspend.html New tests --------- New tests have been introduced between XEIGT_8174_full and XEIGTPW_12376_full: ### New IGT tests (15) ### * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at a-dp4: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible at b-dp4: - Statuses : 1 pass(s) - Exec time: [0.68] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.35] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.12] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - Statuses : 2 skip(s) - Exec time: [0.12, 0.34] s * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - Statuses : 2 skip(s) - Exec time: [0.10, 0.12] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - Statuses : 2 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.11, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - Statuses : 3 skip(s) - Exec time: [0.12, 0.34] s * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - Statuses : 3 skip(s) - Exec time: [0.10, 0.35] s Known issues ------------ Here are the changes found in XEIGTPW_12376_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3157]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-3/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-dp-2: - shard-bmg: [PASS][16] -> [FAIL][17] ([Intel XE#3802]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-dp-2.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-dp-2.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2: - shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#3701]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#3719]) +3 other tests fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#316]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3658]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2136] / [Intel XE#2231]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2136]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-4/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1428]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#367]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#367]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +8 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-4/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +111 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#2705]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1727]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#1727] / [Intel XE#3113]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5.html * igt at kms_cdclk@mode-transition at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#314]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_cdclk@mode-transition at pipe-d-dp-5.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#306]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-3/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-7/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_color@legacy-gamma: - shard-bmg: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#877]) +1 other test dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_color@legacy-gamma.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_color@legacy-gamma.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1178]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#307]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#3407]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_content_protection@lic-type-0 at pipe-a-dp-5.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2341]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3278]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at kms_content_protection@uevent.html * igt at kms_content_protection@uevent at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1188]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_content_protection@uevent at pipe-a-dp-5.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2321]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#455]) +9 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2320]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-64x64: - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-sliding-64x64.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_cursor_crc@cursor-sliding-64x64.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#309]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-5/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2286]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2141]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#3383]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2244]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][74] ([Intel XE#2635]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#3007]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2423] / [i915#2575]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#301]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#3321]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#301] / [Intel XE#3321]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#301]) +8 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#2049] / [Intel XE#2597]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-suspend.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][87] ([Intel XE#2597]) +2 other tests incomplete [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][88] ([Intel XE#2049]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#886]) +2 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip@wf_vblank-ts-check at b-dp2: - shard-bmg: [PASS][91] -> [FAIL][92] ([Intel XE#2882]) +6 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check at b-dp2.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_flip@wf_vblank-ts-check at b-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2293]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +17 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [FAIL][99] ([Intel XE#2333]) +7 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][100] -> [SKIP][101] ([Intel XE#2136] / [Intel XE#2351]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2352]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#651]) +10 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#656]) +19 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2313]) +25 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#1503]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_hdr@invalid-hdr.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#3898]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#346]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2927]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2927]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][113] -> [FAIL][114] ([Intel XE#616]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +14 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#718]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-7/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#908]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2499]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-4/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#3924]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at kms_psr@psr2-sprite-plane-onoff.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-2/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#3414]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1435]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#362]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2450]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#1499]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1499]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#756]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1091] / [Intel XE#2849]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][140] -> [INCOMPLETE][141] ([Intel XE#2771] / [Intel XE#3918]) +1 other test incomplete [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][142] ([Intel XE#3869]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-3/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#3889]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-5/igt at xe_eudebug_online@single-step.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-vram: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#688]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-7/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1392]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2322]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#288]) +8 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_exec_queue_property@basic-get-property: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#1130]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_exec_queue_property@basic-get-property.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_exec_queue_property@basic-get-property.html - shard-dg2-set2: [PASS][153] -> [SKIP][154] ([Intel XE#1130]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_queue_property@basic-get-property.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at xe_exec_queue_property@basic-get-property.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1192]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-5/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#378]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1420] / [Intel XE#2838]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-5/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2284]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#584]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-6/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2284] / [Intel XE#366]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-7/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#579]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#944]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#944]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#3342]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-8/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-userptr-either-side-partial: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1130]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_vm@munmap-style-unbind-userptr-either-side-partial.html #### Possible fixes #### * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][168] ([Intel XE#911]) -> [PASS][169] +3 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][170] ([Intel XE#3321]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#2597]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][176] ([Intel XE#2882]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][178] -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][180] ([Intel XE#455]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_hdr@invalid-hdr.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-466/igt at kms_hdr@invalid-hdr.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][182] ([Intel XE#1035]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][184] ([Intel XE#361]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][186] ([Intel XE#718]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][188] ([Intel XE#3313]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_sequence@get-forked-busy.html * igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][190] -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][192] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_module_load@load: - shard-bmg: ([PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [SKIP][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218]) ([Intel XE#2457]) -> ([PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-7/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-5/igt at xe_module_load@load.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][244] ([Intel XE#3781]) -> [INCOMPLETE][245] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-4/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][246] ([Intel XE#3781]) -> [INCOMPLETE][247] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: [SKIP][248] ([Intel XE#2327]) -> [SKIP][249] ([Intel XE#2136] / [Intel XE#2231]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-dg2-set2: [SKIP][250] ([Intel XE#316]) -> [SKIP][251] ([Intel XE#2136]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: [SKIP][252] ([Intel XE#1124]) -> [SKIP][253] ([Intel XE#2136] / [Intel XE#2231]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][254] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][256] ([Intel XE#455]) -> [SKIP][257] ([Intel XE#2136]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][258] ([Intel XE#2311]) -> [SKIP][259] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html - shard-dg2-set2: [SKIP][260] ([Intel XE#651]) -> [SKIP][261] ([Intel XE#2136]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][262] ([Intel XE#877]) -> [FAIL][263] ([Intel XE#2333]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][264] ([Intel XE#2333]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][266] ([Intel XE#2313]) -> [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html - shard-dg2-set2: [SKIP][268] ([Intel XE#653]) -> [SKIP][269] ([Intel XE#2136] / [Intel XE#2351]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][270] ([Intel XE#2501]) -> [SKIP][271] ([Intel XE#3007]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2-set2: [SKIP][272] ([Intel XE#356]) -> [SKIP][273] ([Intel XE#2423] / [i915#2575]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][274] ([Intel XE#1122]) -> [SKIP][275] ([Intel XE#2136]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html - shard-bmg: [SKIP][276] ([Intel XE#2387]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2231]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr2_su@page_flip-nv12.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][278] -> [FAIL][279] ([Intel XE#2883]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-lnl-1/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][280] ([Intel XE#2426]) -> [FAIL][281] ([Intel XE#1729]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_tiled_display@basic-test-pattern.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][282] ([Intel XE#362]) -> [FAIL][283] ([Intel XE#1729]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][284] ([Intel XE#3889]) -> [SKIP][285] ([Intel XE#1130]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: [SKIP][286] ([Intel XE#3889]) -> [SKIP][287] ([Intel XE#1130]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][288] ([Intel XE#1473]) -> [FAIL][289] ([Intel XE#1000]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][290] ([Intel XE#1473]) -> [FAIL][291] ([Intel XE#1000]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-bmg: [SKIP][292] ([Intel XE#2322]) -> [SKIP][293] ([Intel XE#1130]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt at xe_oa@map-oa-buffer: - shard-dg2-set2: [SKIP][294] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][295] ([Intel XE#1130]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_oa@map-oa-buffer.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at xe_oa@map-oa-buffer.html * igt at xe_pm@d3cold-basic: - shard-bmg: [SKIP][296] ([Intel XE#2284]) -> [SKIP][297] ([Intel XE#1130]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_pm@d3cold-basic.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-bmg-1/igt at xe_pm@d3cold-basic.html - shard-dg2-set2: [SKIP][298] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][299] ([Intel XE#1130]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pm@d3cold-basic.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/shard-dg2-435/igt at xe_pm@d3cold-basic.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3802]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3802 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12376 IGTPW_12376: 2f8ddabf274fb24c38be71f39a28fde8a67c19f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12376/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathan.cavitt at intel.com Thu Jan 2 16:25:40 2025 From: jonathan.cavitt at intel.com (Jonathan Cavitt) Date: Thu, 2 Jan 2025 16:25:40 +0000 Subject: [PATCH] tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork Message-ID: <20250102162540.81162-1-jonathan.cavitt@intel.com> An earlier commit prevented the execution of the xe_cork_destroy function when the xe_cork is not initialized via xe_cork_create in xe_drm_fdinfo. This must also be done with the xe_cork_sync_end function in some places. Fixes: 2feb1d67 ("lib/xe/xe_spin: move the spinner related functions to lib") Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3869 CC: Pravalika Gurram CC: Zbigniew Kempczy?ski CC: Daniel Stenka Signed-off-by: Jonathan Cavitt --- tests/intel/xe_drm_fdinfo.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index e83c55c646..0d1cbfe59e 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -532,8 +532,11 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); - xe_for_each_engine_class(class) - xe_cork_sync_end(fd, ctx[class]); + xe_for_each_engine_class(class) { + if (ctx[class]) + xe_cork_sync_end(fd, ctx[class]); + } + read_engine_cycles(fd, pceu2); xe_for_each_engine_class(class) { @@ -573,8 +576,11 @@ utilization_all_full_load(int fd) read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); - xe_for_each_engine_class(class) - xe_cork_sync_end(fd, ctx[class]); + xe_for_each_engine_class(class) { + if (ctx[class]) + xe_cork_sync_end(fd, ctx[class]); + } + read_engine_cycles(fd, pceu2); xe_for_each_engine_class(class) { -- 2.43.0 From patchwork at emeril.freedesktop.org Thu Jan 2 17:11:48 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 17:11:48 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fdrm=5Ffdin?= =?utf-8?q?fo=3A_Do_not_end_NULL_xe=5Fcork?= In-Reply-To: <20250102162540.81162-1-jonathan.cavitt@intel.com> References: <20250102162540.81162-1-jonathan.cavitt@intel.com> Message-ID: <173583790819.2097694.1071676479695604766@b555e5b46a47> == Series Details == Series: tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork URL : https://patchwork.freedesktop.org/series/143066/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12377_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_8174 -> IGTPW_12377 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2425-59c846c00dda72adf1a68bf7e76bdc57039371e3 IGTPW_12377: 12377 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2425-59c846c00dda72adf1a68bf7e76bdc57039371e3: 59c846c00dda72adf1a68bf7e76bdc57039371e3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 2 17:15:12 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 17:15:12 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/intel/xe=5Fdrm=5Ffd?= =?utf-8?q?info=3A_Do_not_end_NULL_xe=5Fcork?= In-Reply-To: <20250102162540.81162-1-jonathan.cavitt@intel.com> References: <20250102162540.81162-1-jonathan.cavitt@intel.com> Message-ID: <173583811259.2099751.3817956842785045081@b555e5b46a47> == Series Details == Series: tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork URL : https://patchwork.freedesktop.org/series/143066/ State : failure == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12377 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12377 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12377, please notify your bug team (I915-ci-infra at 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_12377/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12377: ### IGT changes ### #### Possible regressions #### * igt at kms_pm_rpm@basic-rte: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-rpls-4/igt at kms_pm_rpm@basic-rte.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-rpls-4/igt at kms_pm_rpm@basic-rte.html Known issues ------------ Here are the changes found in IGTPW_12377 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [PASS][3] -> [DMESG-WARN][4] ([i915#12253]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][6] ([i915#13393]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-arlh-2/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][8] ([i915#13393]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-mtlp-6/igt at i915_selftest@live at workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12377 * Linux: CI_DRM_15892 -> CI_DRM_15893 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15893: 59c846c00dda72adf1a68bf7e76bdc57039371e3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12377: 12377 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/index.html From jonathan.cavitt at intel.com Thu Jan 2 17:59:46 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Thu, 2 Jan 2025 17:59:46 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkJBVDogZmFpbHVyZSBmb3IgdGVzdHMvaW50ZWwv?= =?utf-8?B?eGVfZHJtX2ZkaW5mbzogRG8gbm90IGVuZCBOVUxMIHhlX2Nvcms=?= In-Reply-To: <173583811259.2099751.3817956842785045081@b555e5b46a47> References: <20250102162540.81162-1-jonathan.cavitt@intel.com> <173583811259.2099751.3817956842785045081@b555e5b46a47> Message-ID: -----Original Message----- From: Patchwork Sent: Thursday, January 2, 2025 9:15 AM To: Cavitt, Jonathan Cc: igt-dev at lists.freedesktop.org Subject: ? i915.CI.BAT: failure for tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork > > == Series Details == > > Series: tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork > URL : https://patchwork.freedesktop.org/series/143066/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8174 -> IGTPW_12377 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12377 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12377, please notify your bug team (I915-ci-infra at 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_12377/index.html > > Participating hosts (40 -> 39) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12377: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at kms_pm_rpm@basic-rte: > - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-rpls-4/igt at kms_pm_rpm@basic-rte.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-rpls-4/igt at kms_pm_rpm@basic-rte.html > This test is unrelated to the target change and thus this is likely not a regression. -Jonathan Cavitt > > Known issues > ------------ > > Here are the changes found in IGTPW_12377 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at kms_chamelium_edid@hdmi-edid-read: > - bat-dg2-13: [PASS][3] -> [DMESG-WARN][4] ([i915#12253]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html > > * igt at runner@aborted: > - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/fi-pnv-d510/igt at runner@aborted.html > > > #### Possible fixes #### > > * igt at i915_selftest@live at workarounds: > - bat-arlh-2: [DMESG-FAIL][6] ([i915#13393]) -> [PASS][7] +1 other test pass > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-arlh-2/igt at i915_selftest@live at workarounds.html > - bat-mtlp-6: [DMESG-FAIL][8] ([i915#13393]) -> [PASS][9] +1 other test pass > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/bat-mtlp-6/igt at i915_selftest@live at workarounds.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 > [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 > [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 > [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_8174 -> IGTPW_12377 > * Linux: CI_DRM_15892 -> CI_DRM_15893 > > CI-20190529: 20190529 > CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux > CI_DRM_15893: 59c846c00dda72adf1a68bf7e76bdc57039371e3 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12377: 12377 > IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12377/index.html > From patchwork at emeril.freedesktop.org Thu Jan 2 18:32:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 02 Jan 2025 18:32:25 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fdrm=5Ffdi?= =?utf-8?q?nfo=3A_Do_not_end_NULL_xe=5Fcork?= In-Reply-To: <20250102162540.81162-1-jonathan.cavitt@intel.com> References: <20250102162540.81162-1-jonathan.cavitt@intel.com> Message-ID: <173584274582.2129553.3479711133137186307@b555e5b46a47> == Series Details == Series: tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork URL : https://patchwork.freedesktop.org/series/143066/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12377_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12377_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12377_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12377_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible at cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_flip@2x-absolute-wf_vblank-interruptible at cd-hdmi-a6-dp5.html * igt at kms_flip@flip-vs-suspend at c-dp2: - shard-bmg: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at c-dp2.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_flip@flip-vs-suspend at c-dp2.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][6] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_psr@psr2-dpms: - shard-lnl: NOTRUN -> [FAIL][7] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at kms_psr@psr2-dpms.html Known issues ------------ Here are the changes found in XEIGTPW_12377_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3157]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#3719]) +3 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#3767]) +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3279]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2136]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +7 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3: - shard-bmg: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#3862]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3432]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +111 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#1727] / [Intel XE#3113]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +9 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5.html * igt at kms_cdclk@mode-transition at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#314]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_cdclk@mode-transition at pipe-d-dp-5.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1152]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_cdclk@plane-scaling at pipe-b-dp-5.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-3/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-6/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_content_protection@atomic-dpms at pipe-a-dp-5.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3007]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2341]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-2/igt at kms_content_protection@uevent.html * igt at kms_content_protection@uevent at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1188]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_content_protection@uevent at pipe-a-dp-5.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2321]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#877]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#1475]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@default-dirtyfb-ioctl: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_dirtyfb@default-dirtyfb-ioctl.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_dirtyfb@default-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#2141]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3383]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2244]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#2882]) +6 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][64] -> [FAIL][65] ([Intel XE#301]) +9 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][67] -> [INCOMPLETE][68] ([Intel XE#2597]) +1 other test incomplete [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3879]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][71] ([Intel XE#2635]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#886]) +4 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_flip@blocking-wf_vblank.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#3321]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at b-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#301]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at b-dp5.html * igt at kms_flip@flip-vs-expired-vblank at d-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#3149]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at d-dp5.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][78] ([Intel XE#2597]) +1 other test incomplete [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][79] ([Intel XE#2597] / [Intel XE#2635]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401] / [Intel XE#1745]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +16 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][88] ([Intel XE#2333]) +6 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2136] / [Intel XE#2231]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2352]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +10 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +19 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2313]) +27 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1469]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +8 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1503]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#3898]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#346]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2927]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2927]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +14 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#908]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2893]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1489]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1406]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-6/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3414]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#362]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2450]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_universal_plane@universal-plane-functional: - shard-bmg: [PASS][121] -> [SKIP][122] ([Intel XE#3007]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_universal_plane@universal-plane-functional.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_universal_plane@universal-plane-functional.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1499]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#756]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#756]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#3889]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-5/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-2/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#688]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][131] ([Intel XE#2364]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#1600]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-466/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1392]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2322]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-3/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@twice-null: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1130]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at xe_exec_basic@twice-null.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#288]) +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1192]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-3/igt at xe_live_ktest@xe_bo.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1420] / [Intel XE#2838]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2284]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#584]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-6/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-mocs: - shard-bmg: [PASS][142] -> [INCOMPLETE][143] ([Intel XE#569]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm@s3-mocs.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at xe_pm@s3-mocs.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][145] -> [ABORT][146] ([Intel XE#1794]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_pm@s4-mocs.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#579]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#944]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-8/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#3342]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#1130]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html * igt at xe_vm@munmap-style-unbind-one-partial: - shard-bmg: [PASS][152] -> [SKIP][153] ([Intel XE#1130]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_vm@munmap-style-unbind-one-partial.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at xe_vm@munmap-style-unbind-one-partial.html - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1130]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at xe_vm@munmap-style-unbind-one-partial.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [FAIL][155] ([Intel XE#3321]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][157] ([Intel XE#301]) -> [PASS][158] +2 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][159] ([Intel XE#2882]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][161] -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][163] -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][165] ([Intel XE#1035]) -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][167] ([Intel XE#361]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][169] ([Intel XE#718]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][171] ([Intel XE#3313]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][173] -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-3/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][175] ([Intel XE#2883]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-3/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: [FAIL][177] ([Intel XE#3869]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_drm_fdinfo@utilization-others-full-load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-435/igt at xe_drm_fdinfo@utilization-others-full-load.html - shard-bmg: [FAIL][179] ([Intel XE#3869]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_drm_fdinfo@utilization-others-full-load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][181] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][183] ([Intel XE#3865]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-8/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][185] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][187] -> [PASS][188] +2 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at xe_pm_residency@gt-c6-freeze at gt1.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][189] ([Intel XE#958]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][191] ([Intel XE#3781]) -> [INCOMPLETE][192] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-4/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][193] ([Intel XE#3781]) -> [INCOMPLETE][194] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][195] ([Intel XE#316]) -> [SKIP][196] ([Intel XE#2136] / [Intel XE#2351]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_big_fb@linear-16bpp-rotate-90.html - shard-bmg: [SKIP][197] ([Intel XE#2327]) -> [SKIP][198] ([Intel XE#2136] / [Intel XE#2231]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-90.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-bmg: [SKIP][199] ([Intel XE#1124]) -> [SKIP][200] ([Intel XE#2136] / [Intel XE#2231]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg2-set2: [SKIP][201] ([Intel XE#1124]) -> [SKIP][202] ([Intel XE#2136] / [Intel XE#2351]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][203] ([Intel XE#2887]) -> [SKIP][204] ([Intel XE#2136] / [Intel XE#2231]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html - shard-dg2-set2: [SKIP][205] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][206] ([Intel XE#2136]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-bmg: [SKIP][207] ([Intel XE#2252]) -> [SKIP][208] ([Intel XE#3007]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_chamelium_frames@hdmi-crc-fast.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_chamelium_frames@hdmi-crc-fast.html - shard-dg2-set2: [SKIP][209] ([Intel XE#373]) -> [SKIP][210] ([Intel XE#2423] / [i915#2575]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_chamelium_frames@hdmi-crc-fast.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][211] ([Intel XE#455]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_content_protection@lic-type-1.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_content_protection@lic-type-1.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][213] ([Intel XE#1695]) -> [SKIP][214] ([Intel XE#2136] / [Intel XE#2231]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_fbcon_fbt@fbc.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_fbcon_fbt@fbc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][215] ([Intel XE#651]) -> [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][217] ([Intel XE#877]) -> [FAIL][218] ([Intel XE#2333]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [FAIL][219] ([Intel XE#2333]) -> [SKIP][220] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][221] ([Intel XE#2311]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][223] ([Intel XE#653]) -> [SKIP][224] ([Intel XE#2136] / [Intel XE#2351]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][225] ([Intel XE#2313]) -> [SKIP][226] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][227] ([Intel XE#653]) -> [SKIP][228] ([Intel XE#2136]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][229] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][230] ([Intel XE#3544]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][231] ([Intel XE#2763]) -> [SKIP][232] ([Intel XE#3007]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg2-set2: [SKIP][233] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][235] ([Intel XE#1489]) -> [SKIP][236] ([Intel XE#2136] / [Intel XE#2231]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area.html - shard-dg2-set2: [SKIP][237] ([Intel XE#1489]) -> [SKIP][238] ([Intel XE#2136]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt at kms_psr@psr2-sprite-render: - shard-bmg: [SKIP][239] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2231]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr@psr2-sprite-render.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at kms_psr@psr2-sprite-render.html - shard-dg2-set2: [SKIP][241] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][242] ([Intel XE#2136]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr2-sprite-render.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_psr@psr2-sprite-render.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][243] ([Intel XE#362]) -> [FAIL][244] ([Intel XE#1729]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][245] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][246] ([Intel XE#1000]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-threads-large.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-5/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: [SKIP][247] ([Intel XE#2322]) -> [SKIP][248] ([Intel XE#1130]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt at xe_exec_fault_mode@many-userptr: - shard-dg2-set2: [SKIP][249] ([Intel XE#288]) -> [SKIP][250] ([Intel XE#1130]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_fault_mode@many-userptr.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at xe_exec_fault_mode@many-userptr.html * igt at xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][251] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][252] ([Intel XE#1130]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_oa@syncs-userptr-wait-cfg.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/shard-dg2-434/igt at xe_oa@syncs-userptr-wait-cfg.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12377 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2425-59c846c00dda72adf1a68bf7e76bdc57039371e3 IGTPW_12377: 12377 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2425-59c846c00dda72adf1a68bf7e76bdc57039371e3: 59c846c00dda72adf1a68bf7e76bdc57039371e3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathan.cavitt at intel.com Thu Jan 2 18:53:15 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Thu, 2 Jan 2025 18:53:15 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciB0ZXN0cy9pbnRlbC94?= =?utf-8?B?ZV9kcm1fZmRpbmZvOiBEbyBub3QgZW5kIE5VTEwgeGVfY29yaw==?= In-Reply-To: <173584274582.2129553.3479711133137186307@b555e5b46a47> References: <20250102162540.81162-1-jonathan.cavitt@intel.com> <173584274582.2129553.3479711133137186307@b555e5b46a47> Message-ID: From: Patchwork Sent: Thursday, January 2, 2025 10:32 AM To: Cavitt, Jonathan Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.Full: failure for tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork Patch Details Series: tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork URL: https://patchwork.freedesktop.org/series/143066/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12377/index.html CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12377_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12377_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12377_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12377_full: IGT changes Possible regressions ? igt at kms_flip@2x-absolute-wf_vblank-interruptible: o shard-dg2-set2: PASS -> INCOMPLETE +1 other test incomplete ? igt at kms_flip@2x-absolute-wf_vblank-interruptible at cd-hdmi-a6-dp5: o shard-dg2-set2: NOTRUN -> INCOMPLETE ? igt at kms_flip@flip-vs-suspend at c-dp2: o shard-bmg: PASS -> INCOMPLETE ? igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: o shard-bmg: NOTRUN -> FAIL +3 other tests fail ? igt at kms_psr@psr2-dpms: o shard-lnl: NOTRUN -> FAIL +1 other test fail These tests are unrelated to the target change and thus these are likely not regressions. -Jonathan Cavitt Known issues Here are the changes found in XEIGTPW_12377_full that come from known issues: IGT changes Issues hit ? igt at kms_addfb_basic@invalid-smem-bo-on-discrete: o shard-lnl: NOTRUN -> SKIP (Intel XE#3157) ? igt at kms_async_flips@async-flip-with-page-flip-events-atomic: o shard-lnl: PASS -> FAIL (Intel XE#3719) +3 other tests fail ? igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3767) +11 other tests skip ? igt at kms_atomic@plane-primary-overlay-mutable-zpos: o shard-lnl: NOTRUN -> SKIP (Intel XE#3279) ? igt at kms_big_fb@4-tiled-32bpp-rotate-270: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) ? igt at kms_big_fb@4-tiled-64bpp-rotate-180: o shard-dg2-set2: PASS -> SKIP (Intel XE#2136) +3 other tests skip ? igt at kms_big_fb@linear-32bpp-rotate-270: o shard-lnl: NOTRUN -> SKIP (Intel XE#1407) ? igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: o shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +7 other tests skip ? igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: o shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +6 other tests skip o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +4 other tests skip ? igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: o shard-bmg: NOTRUN -> SKIP (Intel XE#2314 / Intel XE#2894) ? igt at kms_bw@linear-tiling-1-displays-1920x1080p: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) ? igt at kms_bw@linear-tiling-1-displays-3840x2160p: o shard-bmg: NOTRUN -> SKIP (Intel XE#367) +1 other test skip ? igt at kms_bw@linear-tiling-2-displays-2160x1440p: o shard-lnl: NOTRUN -> SKIP (Intel XE#367) ? igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: o shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +7 other tests skip ? igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3: o shard-bmg: PASS -> INCOMPLETE (Intel XE#3862) ? igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: o shard-bmg: NOTRUN -> SKIP (Intel XE#3432) +1 other test skip ? igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +111 other tests skip ? igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: o shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727) ? igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6: o shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1727 / Intel XE#3113) ? igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: o shard-bmg: NOTRUN -> SKIP (Intel XE#2887) +9 other tests skip ? igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +35 other tests skip ? igt at kms_cdclk@mode-transition at pipe-d-dp-5: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#314) +3 other tests skip ? igt at kms_cdclk@plane-scaling at pipe-b-dp-5: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1152) +3 other tests skip ? igt at kms_chamelium_color@ctm-0-25: o shard-lnl: NOTRUN -> SKIP (Intel XE#306) ? igt at kms_chamelium_hpd@common-hpd-after-suspend: o shard-bmg: NOTRUN -> SKIP (Intel XE#2252) +5 other tests skip o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +2 other tests skip ? igt at kms_chamelium_hpd@hdmi-hpd: o shard-lnl: NOTRUN -> SKIP (Intel XE#373) +5 other tests skip ? igt at kms_content_protection@atomic-dpms at pipe-a-dp-5: o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +1 other test fail ? igt at kms_content_protection@lic-type-1: o shard-bmg: NOTRUN -> SKIP (Intel XE#3007) ? igt at kms_content_protection@mei-interface: o shard-bmg: NOTRUN -> SKIP (Intel XE#2341) ? igt at kms_content_protection@uevent: o shard-lnl: NOTRUN -> SKIP (Intel XE#3278) +1 other test skip ? igt at kms_content_protection@uevent at pipe-a-dp-5: o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1188) ? igt at kms_cursor_crc@cursor-offscreen-512x170: o shard-lnl: NOTRUN -> SKIP (Intel XE#2321) +2 other tests skip ? igt at kms_cursor_crc@cursor-offscreen-512x512: o shard-bmg: NOTRUN -> SKIP (Intel XE#2321) ? igt at kms_cursor_crc@cursor-random-max-size: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +8 other tests skip ? igt at kms_cursor_crc@cursor-rapid-movement-32x10: o shard-bmg: NOTRUN -> SKIP (Intel XE#2320) +2 other tests skip ? igt at kms_cursor_crc@cursor-sliding-256x85: o shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +2 other tests skip ? igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: o shard-lnl: NOTRUN -> SKIP (Intel XE#309) +2 other tests skip ? igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: o shard-bmg: PASS -> DMESG-WARN (Intel XE#877) ? igt at kms_cursor_legacy@flip-vs-cursor-toggle: o shard-lnl: PASS -> FAIL (Intel XE#1475) ? igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: o shard-bmg: NOTRUN -> SKIP (Intel XE#2286) ? igt at kms_dirtyfb@default-dirtyfb-ioctl: o shard-bmg: PASS -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip ? igt at kms_dirtyfb@fbc-dirtyfb-ioctl: o shard-bmg: NOTRUN -> FAIL (Intel XE#2141) +2 other tests fail ? igt at kms_display_modes@extended-mode-basic: o shard-lnl: NOTRUN -> SKIP (Intel XE#3383) ? igt at kms_dsc@dsc-with-output-formats: o shard-bmg: NOTRUN -> SKIP (Intel XE#2244) ? igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3: o shard-bmg: PASS -> FAIL (Intel XE#2882) +6 other tests fail ? igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: o shard-dg2-set2: PASS -> FAIL (Intel XE#301) +9 other tests fail ? igt at kms_flip@2x-flip-vs-rmfb-interruptible: o shard-lnl: NOTRUN -> SKIP (Intel XE#1421) +2 other tests skip ? igt at kms_flip@2x-flip-vs-suspend-interruptible: o shard-bmg: PASS -> INCOMPLETE (Intel XE#2597) +1 other test incomplete ? igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3: o shard-bmg: PASS -> FAIL (Intel XE#3879) ? igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3: o shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#2635) ? igt at kms_flip@blocking-wf_vblank: o shard-lnl: PASS -> FAIL (Intel XE#886) +4 other tests fail ? igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: o shard-bmg: PASS -> FAIL (Intel XE#3321) +1 other test fail ? igt at kms_flip@flip-vs-expired-vblank at b-dp5: o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301) +1 other test fail ? igt at kms_flip@flip-vs-expired-vblank at d-dp5: o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#3149) ? igt at kms_flip@flip-vs-suspend-interruptible: o shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#2597) +1 other test incomplete ? igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: o shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#2597 / Intel XE#2635) ? igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: o shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745) ? igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: o shard-lnl: NOTRUN -> SKIP (Intel XE#1401) ? igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: o shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745) +1 other test skip ? igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: o shard-lnl: NOTRUN -> SKIP (Intel XE#1397) +1 other test skip ? igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: o shard-bmg: NOTRUN -> SKIP (Intel XE#2293) +2 other tests skip ? igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: o shard-bmg: NOTRUN -> SKIP (Intel XE#2293 / Intel XE#2380) +2 other tests skip ? igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: o shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +16 other tests skip ? igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: o shard-lnl: NOTRUN -> SKIP (Intel XE#651) +7 other tests skip ? igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: o shard-bmg: NOTRUN -> FAIL (Intel XE#2333) +6 other tests fail ? igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: o shard-bmg: NOTRUN -> SKIP (Intel XE#2136 / Intel XE#2231) ? igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: o shard-dg2-set2: PASS -> SKIP (Intel XE#2136 / Intel XE#2351) +1 other test skip ? igt at kms_frontbuffer_tracking@fbc-tiling-y: o shard-bmg: NOTRUN -> SKIP (Intel XE#2352) ? igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +10 other tests skip ? igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: o shard-lnl: NOTRUN -> SKIP (Intel XE#656) +19 other tests skip ? igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: o shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +27 other tests skip ? igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: o shard-lnl: NOTRUN -> SKIP (Intel XE#1469) ? igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +8 other tests skip ? igt at kms_hdr@static-toggle: o shard-lnl: NOTRUN -> SKIP (Intel XE#1503) ? igt at kms_histogram@global-basic: o shard-bmg: NOTRUN -> SKIP (Intel XE#3898) +1 other test skip ? igt at kms_joiner@basic-big-joiner: o shard-lnl: NOTRUN -> SKIP (Intel XE#346) ? igt at kms_joiner@basic-ultra-joiner: o shard-lnl: NOTRUN -> SKIP (Intel XE#2927) ? igt at kms_joiner@invalid-modeset-ultra-joiner: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2927) ? igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +1 other test skip ? igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +2 other tests skip ? igt at kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: o shard-dg2-set2: PASS -> SKIP (Intel XE#2423 / i915#2575) +2 other tests skip ? igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: o shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +3 other tests skip ? igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: o shard-bmg: NOTRUN -> SKIP (Intel XE#2763) +14 other tests skip ? igt at kms_pm_dc@dc6-dpms: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#908) ? igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: o shard-lnl: NOTRUN -> SKIP (Intel XE#2893) ? igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: o shard-bmg: NOTRUN -> SKIP (Intel XE#1489) +4 other tests skip ? igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +1 other test skip ? igt at kms_psr@fbc-psr2-primary-render: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +3 other tests skip ? igt at kms_psr@pr-cursor-render: o shard-lnl: NOTRUN -> SKIP (Intel XE#1406) ? igt at kms_psr@psr-primary-page-flip: o shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +7 other tests skip ? igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: o shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) +1 other test skip ? igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: o shard-bmg: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) +1 other test skip ? igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3414) ? igt at kms_tiled_display@basic-test-pattern-with-chamelium: o shard-lnl: NOTRUN -> SKIP (Intel XE#362) ? igt at kms_tv_load_detect@load-detect: o shard-bmg: NOTRUN -> SKIP (Intel XE#2450) ? igt at kms_universal_plane@universal-plane-functional: o shard-bmg: PASS -> SKIP (Intel XE#3007) +2 other tests skip ? igt at kms_vrr@seamless-rr-switch-drrs: o shard-lnl: NOTRUN -> SKIP (Intel XE#1499) ? igt at kms_writeback@writeback-pixel-formats: o shard-bmg: NOTRUN -> SKIP (Intel XE#756) o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756) +1 other test skip ? igt at xe_eudebug@basic-exec-queues: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +3 other tests skip ? igt at xe_eudebug@basic-vm-access: o shard-bmg: NOTRUN -> SKIP (Intel XE#2905) +4 other tests skip ? igt at xe_eudebug@basic-vm-access-parameters-userptr: o shard-lnl: NOTRUN -> SKIP (Intel XE#3889) ? igt at xe_eudebug_online@single-step: o shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +1 other test skip ? igt at xe_evict@evict-cm-threads-small-multi-vm: o shard-lnl: NOTRUN -> SKIP (Intel XE#688) +6 other tests skip ? igt at xe_evict@evict-large-multi-vm-cm: o shard-bmg: NOTRUN -> FAIL (Intel XE#2364) o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1600) ? igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: o shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +1 other test skip ? igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: o shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +5 other tests skip ? igt at xe_exec_basic@twice-null: o shard-bmg: NOTRUN -> SKIP (Intel XE#1130) +1 other test skip ? igt at xe_exec_fault_mode@twice-userptr-prefetch: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +7 other tests skip ? igt at xe_live_ktest@xe_bo: o shard-lnl: NOTRUN -> SKIP (Intel XE#1192) ? igt at xe_oa@closed-fd-and-unmapped-access: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +1 other test skip ? igt at xe_pat@pat-index-xehpc: o shard-lnl: NOTRUN -> SKIP (Intel XE#1420 / Intel XE#2838) ? igt at xe_pm@d3cold-mmap-system: o shard-bmg: NOTRUN -> SKIP (Intel XE#2284) ? igt at xe_pm@s3-basic-exec: o shard-lnl: NOTRUN -> SKIP (Intel XE#584) ? igt at xe_pm@s3-mocs: o shard-bmg: PASS -> INCOMPLETE (Intel XE#569) ? igt at xe_pm@s4-d3cold-basic-exec: o shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) +1 other test skip ? igt at xe_pm@s4-mocs: o shard-lnl: PASS -> ABORT (Intel XE#1794) ? igt at xe_pm@vram-d3cold-threshold: o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#579) ? igt at xe_query@multigpu-query-invalid-extension: o shard-lnl: NOTRUN -> SKIP (Intel XE#944) ? igt at xe_sriov_flr@flr-vf1-clear: o shard-lnl: NOTRUN -> SKIP (Intel XE#3342) ? igt at xe_vm@munmap-style-unbind-many-either-side-partial: o shard-dg2-set2: PASS -> SKIP (Intel XE#1130) +6 other tests skip ? igt at xe_vm@munmap-style-unbind-one-partial: o shard-bmg: PASS -> SKIP (Intel XE#1130) +8 other tests skip o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1130) Possible fixes ? igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: o shard-bmg: FAIL (Intel XE#3321) -> PASS ? igt at kms_flip@flip-vs-expired-vblank-interruptible: o shard-dg2-set2: FAIL (Intel XE#301) -> PASS +2 other tests pass ? igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: o shard-bmg: FAIL (Intel XE#2882) -> PASS +1 other test pass ? igt at kms_hdr@bpc-switch: o shard-dg2-set2: INCOMPLETE -> PASS ? igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: o shard-bmg: FAIL -> PASS +1 other test pass ? igt at kms_plane@plane-panning-bottom-right-suspend: o shard-bmg: INCOMPLETE (Intel XE#1035) -> PASS +1 other test pass ? igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: o shard-dg2-set2: FAIL (Intel XE#361) -> PASS ? igt at kms_pm_dc@dc5-dpms: o shard-lnl: FAIL (Intel XE#718) -> PASS ? igt at kms_sequence@get-forked-busy: o shard-bmg: INCOMPLETE (Intel XE#3313) -> PASS ? igt at kms_setmode@basic at pipe-a-edp-1: o shard-lnl: FAIL -> PASS ? igt at kms_setmode@basic at pipe-b-edp-1: o shard-lnl: FAIL (Intel XE#2883) -> PASS +1 other test pass ? igt at xe_drm_fdinfo@utilization-others-full-load: o shard-dg2-set2: FAIL (Intel XE#3869) -> PASS o shard-bmg: FAIL (Intel XE#3869) -> PASS ? igt at xe_evict@evict-beng-mixed-many-threads-small: o shard-dg2-set2: TIMEOUT (Intel XE#1473 / Intel XE#402) -> PASS ? igt at xe_gt_freq@freq_suspend: o shard-bmg: INCOMPLETE (Intel XE#3865) -> PASS ? igt at xe_pm@s4-vm-bind-unbind-all: o shard-lnl: ABORT (Intel XE#1607 / Intel XE#1794) -> PASS ? igt at xe_pm_residency@gt-c6-freeze at gt1: o shard-bmg: INCOMPLETE -> PASS +2 other tests pass ? igt at xe_pm_residency@toggle-gt-c6: o shard-lnl: FAIL (Intel XE#958) -> PASS Warnings ? igt at kms_async_flips@crc: o shard-bmg: INCOMPLETE (Intel XE#3781) -> INCOMPLETE (Intel XE#3781 / Intel XE#3946) +1 other test incomplete ? igt at kms_async_flips@crc-atomic: o shard-dg2-set2: INCOMPLETE (Intel XE#3781) -> INCOMPLETE (Intel XE#3781 / Intel XE#3946) +1 other test incomplete ? igt at kms_big_fb@linear-16bpp-rotate-90: o shard-dg2-set2: SKIP (Intel XE#316) -> SKIP (Intel XE#2136 / Intel XE#2351) o shard-bmg: SKIP (Intel XE#2327) -> SKIP (Intel XE#2136 / Intel XE#2231) ? igt at kms_big_fb@y-tiled-64bpp-rotate-270: o shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136 / Intel XE#2231) o shard-dg2-set2: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136 / Intel XE#2351) ? igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: o shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#2136 / Intel XE#2231) o shard-dg2-set2: SKIP (Intel XE#455 / Intel XE#787) -> SKIP (Intel XE#2136) ? igt at kms_chamelium_frames@hdmi-crc-fast: o shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#3007) o shard-dg2-set2: SKIP (Intel XE#373) -> SKIP (Intel XE#2423 / i915#2575) ? igt at kms_content_protection@lic-type-1: o shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2423 / i915#2575) ? igt at kms_fbcon_fbt@fbc: o shard-bmg: FAIL (Intel XE#1695) -> SKIP (Intel XE#2136 / Intel XE#2231) ? igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render: o shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2136 / Intel XE#2351) +1 other test skip ? igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: o shard-bmg: DMESG-FAIL (Intel XE#877) -> FAIL (Intel XE#2333) ? igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: o shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip ? igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move: o shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip ? igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: o shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2136 / Intel XE#2351) ? igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: o shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip o shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2136) ? igt at kms_hdr@brightness-with-hdr: o shard-bmg: SKIP (Intel XE#3374 / Intel XE#3544) -> SKIP (Intel XE#3544) ? igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: o shard-bmg: SKIP (Intel XE#2763) -> SKIP (Intel XE#3007) o shard-dg2-set2: SKIP (Intel XE#2763 / Intel XE#455) -> SKIP (Intel XE#2423 / i915#2575) ? igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area: o shard-bmg: SKIP (Intel XE#1489) -> SKIP (Intel XE#2136 / Intel XE#2231) o shard-dg2-set2: SKIP (Intel XE#1489) -> SKIP (Intel XE#2136) ? igt at kms_psr@psr2-sprite-render: o shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136 / Intel XE#2231) o shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP (Intel XE#2136) ? igt at kms_tiled_display@basic-test-pattern: o shard-dg2-set2: SKIP (Intel XE#362) -> FAIL (Intel XE#1729) ? igt at xe_evict@evict-threads-large: o shard-bmg: TIMEOUT (Intel XE#1473 / Intel XE#2472) -> FAIL (Intel XE#1000) ? igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: o shard-bmg: SKIP (Intel XE#2322) -> SKIP (Intel XE#1130) ? igt at xe_exec_fault_mode@many-userptr: o shard-dg2-set2: SKIP (Intel XE#288) -> SKIP (Intel XE#1130) +2 other tests skip ? igt at xe_oa@syncs-userptr-wait-cfg: o shard-dg2-set2: SKIP (Intel XE#2541 / Intel XE#3573) -> SKIP (Intel XE#1130) Build changes ? IGT: IGT_8174 -> IGTPW_12377 ? Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2425-59c846c00dda72adf1a68bf7e76bdc57039371e3 IGTPW_12377: 12377 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2425-59c846c00dda72adf1a68bf7e76bdc57039371e3: 59c846c00dda72adf1a68bf7e76bdc57039371e3 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeevan.b at intel.com Fri Jan 3 04:30:36 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Fri, 3 Jan 2025 04:30:36 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkZ1bGw6IGZhaWx1cmUgZm9yIHRlc3RzL2ludGVs?= =?utf-8?B?L2ttc19wbV9ycG06IEFkZCBtYXBwYWJsZSBHVFQgY2hlY2sgaW4gY3Vyc29y?= =?utf-8?Q?_test?= In-Reply-To: <173415584135.2399500.8925654052671574845@b555e5b46a47> References: <20241213103228.1920627-1-jeevan.b@intel.com> <173415584135.2399500.8925654052671574845@b555e5b46a47> Message-ID: Failure not related to patch, please re-report. > -----Original Message----- > From: Patchwork > Sent: Saturday, December 14, 2024 11:27 AM > To: B, Jeevan > Cc: igt-dev at lists.freedesktop.org > Subject: ? i915.CI.Full: failure for tests/intel/kms_pm_rpm: Add mappable > GTT check in cursor test > > == Series Details == > > Series: tests/intel/kms_pm_rpm: Add mappable GTT check in cursor test > URL : https://patchwork.freedesktop.org/series/142544/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15843_full -> IGTPW_12314_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12314_full absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12314_full, please notify your bug team (I915-ci- > infra at 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_12314/index.html > > Participating hosts (12 -> 11) > ------------------------------ > > Missing (1): pig-kbl-iris > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in > IGTPW_12314_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at gem_eio@in-flight-external: > - shard-mtlp: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 2/igt at gem_eio@in-flight-external.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at gem_eio@in-flight-external.html > > * igt at gem_tiled_swapping@non-threaded: > - shard-rkl: [PASS][3] -> [FAIL][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 5/igt at gem_tiled_swapping@non-threaded.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at gem_tiled_swapping@non-threaded.html > > * igt at kms_async_flips@crc-atomic: > - shard-glk: NOTRUN -> [INCOMPLETE][5] +2 other tests incomplete > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk4/igt at kms_async_flips@crc-atomic.html > - shard-snb: NOTRUN -> [INCOMPLETE][6] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb4/igt at kms_async_flips@crc-atomic.html > > * igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-3: > - shard-dg1: NOTRUN -> [CRASH][7] +3 other tests crash > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-3.html > > * igt at kms_pm_rpm@cursor: > - shard-dg1: [PASS][8] -> [SKIP][9] +1 other test skip > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg1- > 13/igt at kms_pm_rpm@cursor.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_pm_rpm@cursor.html > > * igt at kms_pm_rpm@cursor-dpms: > - shard-mtlp: [PASS][10] -> [SKIP][11] +1 other test skip > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 5/igt at kms_pm_rpm@cursor-dpms.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at kms_pm_rpm@cursor-dpms.html > - shard-dg2: [PASS][12] -> [SKIP][13] +1 other test skip > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 4/igt at kms_pm_rpm@cursor-dpms.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_pm_rpm@cursor-dpms.html > > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt at kms_async_flips@crc-atomic at pipe-c-dp-4: > - {shard-dg2-9}: NOTRUN -> [FAIL][14] +4 other tests fail > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 9/igt at kms_async_flips@crc-atomic at pipe-c-dp-4.html > > > New tests > --------- > > New tests have been introduced between CI_DRM_15843_full and > IGTPW_12314_full: > > ### New IGT tests (2) ### > > * igt at kms_setmode@basic-clone-single-crtc at pipe-a-vga-1-hdmi-a-1: > - Statuses : 1 pass(s) > - Exec time: [0.10] s > > * igt at kms_setmode@basic-clone-single-crtc at pipe-b-vga-1-hdmi-a-1: > - Statuses : 1 pass(s) > - Exec time: [0.10] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_12314_full that come from known > issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at api_intel_bb@blit-reloc-purge-cache: > - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8411]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at api_intel_bb@blit-reloc-purge-cache.html > - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8411]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 6/igt at api_intel_bb@blit-reloc-purge-cache.html > - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8411]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at api_intel_bb@blit-reloc-purge-cache.html > - shard-rkl: NOTRUN -> [SKIP][18] ([i915#8411]) +2 other tests skip > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 1/igt at api_intel_bb@blit-reloc-purge-cache.html > > * igt at api_intel_bb@intel-bb-blit-x: > - shard-rkl: NOTRUN -> [DMESG-WARN][19] ([i915#12964]) +10 other > tests dmesg-warn > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at api_intel_bb@intel-bb-blit-x.html > > * igt at device_reset@cold-reset-bound: > - shard-tglu: NOTRUN -> [SKIP][20] ([i915#11078]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at device_reset@cold-reset-bound.html > > * igt at drm_fdinfo@busy-hang at bcs0: > - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +6 other tests skip > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at drm_fdinfo@busy-hang at bcs0.html > > * igt at drm_fdinfo@isolation: > - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +16 other tests skip > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at drm_fdinfo@isolation.html > > * igt at gem_basic@multigpu-create-close: > - shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at gem_basic@multigpu-create-close.html > - shard-dg1: NOTRUN -> [SKIP][24] ([i915#7697]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 12/igt at gem_basic@multigpu-create-close.html > > * igt at gem_ccs@block-copy-compressed: > - shard-tglu: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at gem_ccs@block-copy-compressed.html > > * igt at gem_ccs@block-multicopy-compressed: > - shard-rkl: NOTRUN -> [SKIP][26] ([i915#9323]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at gem_ccs@block-multicopy-compressed.html > - shard-tglu: NOTRUN -> [SKIP][27] ([i915#9323]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at gem_ccs@block-multicopy-compressed.html > > * igt at gem_ccs@large-ctrl-surf-copy: > - shard-rkl: NOTRUN -> [SKIP][28] ([i915#13008]) > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at gem_ccs@large-ctrl-surf-copy.html > - shard-dg1: NOTRUN -> [SKIP][29] ([i915#13008]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at gem_ccs@large-ctrl-surf-copy.html > - shard-tglu: NOTRUN -> [SKIP][30] ([i915#13008]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 7/igt at gem_ccs@large-ctrl-surf-copy.html > - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#13008]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 8/igt at gem_ccs@large-ctrl-surf-copy.html > > * igt at gem_close_race@multigpu-basic-process: > - shard-tglu: NOTRUN -> [SKIP][32] ([i915#7697]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at gem_close_race@multigpu-basic-process.html > > * igt at gem_create@create-ext-cpu-access-sanity-check: > - shard-tglu: NOTRUN -> [SKIP][33] ([i915#6335]) +1 other test skip > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 4/igt at gem_create@create-ext-cpu-access-sanity-check.html > > * igt at gem_create@create-ext-set-pat: > - shard-rkl: NOTRUN -> [SKIP][34] ([i915#8562]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at gem_create@create-ext-set-pat.html > > * igt at gem_ctx_isolation@preservation-s3 at rcs0: > - shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#12353]) +1 other > test incomplete > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk5/igt at gem_ctx_isolation@preservation-s3 at rcs0.html > > * igt at gem_ctx_persistence@engines-mixed-process: > - shard-snb: NOTRUN -> [SKIP][36] ([i915#1099]) +5 other tests skip > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb5/igt at gem_ctx_persistence@engines-mixed-process.html > > * igt at gem_ctx_persistence@heartbeat-close: > - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#8555]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at gem_ctx_persistence@heartbeat-close.html > > * igt at gem_ctx_persistence@heartbeat-many: > - shard-dg1: NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_ctx_persistence@heartbeat-many.html > > * igt at gem_ctx_sseu@engines: > - shard-tglu: NOTRUN -> [SKIP][39] ([i915#280]) +2 other tests skip > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at gem_ctx_sseu@engines.html > > * igt at gem_ctx_sseu@invalid-sseu: > - shard-rkl: NOTRUN -> [SKIP][40] ([i915#280]) +1 other test skip > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at gem_ctx_sseu@invalid-sseu.html > > * igt at gem_ctx_sseu@mmap-args: > - shard-dg2: NOTRUN -> [SKIP][41] ([i915#280]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 5/igt at gem_ctx_sseu@mmap-args.html > > * igt at gem_eio@reset-stress: > - shard-dg1: NOTRUN -> [FAIL][42] ([i915#12543] / [i915#5784]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at gem_eio@reset-stress.html > > * igt at gem_eio@unwedge-stress: > - shard-snb: NOTRUN -> [FAIL][43] ([i915#8898]) > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at gem_eio@unwedge-stress.html > > * igt at gem_exec_balancer@bonded-dual: > - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4771]) +1 other test skip > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 6/igt at gem_exec_balancer@bonded-dual.html > > * igt at gem_exec_balancer@bonded-false-hang: > - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at gem_exec_balancer@bonded-false-hang.html > - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_exec_balancer@bonded-false-hang.html > > * igt at gem_exec_balancer@noheartbeat: > - shard-dg2: NOTRUN -> [SKIP][47] ([i915#8555]) +2 other tests skip > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at gem_exec_balancer@noheartbeat.html > > * igt at gem_exec_balancer@parallel-bb-first: > - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525]) +2 other tests skip > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at gem_exec_balancer@parallel-bb-first.html > > * igt at gem_exec_balancer@parallel-keep-submit-fence: > - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4525]) +3 other tests skip > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 9/igt at gem_exec_balancer@parallel-keep-submit-fence.html > > * igt at gem_exec_capture@capture at vecs0-lmem0: > - shard-dg1: NOTRUN -> [FAIL][50] ([i915#11965]) +2 other tests fail > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at gem_exec_capture@capture at vecs0-lmem0.html > > * igt at gem_exec_flush@basic-uc-ro-default: > - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 > other tests skip > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at gem_exec_flush@basic-uc-ro-default.html > > * igt at gem_exec_flush@basic-uc-set-default: > - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at gem_exec_flush@basic-uc-set-default.html > > * igt at gem_exec_flush@basic-wb-ro-before-default: > - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +1 > other test skip > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_exec_flush@basic-wb-ro-before-default.html > > * igt at gem_exec_reloc@basic-active: > - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at gem_exec_reloc@basic-active.html > > * igt at gem_exec_reloc@basic-gtt-cpu-noreloc: > - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +3 other tests skip > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at gem_exec_reloc@basic-gtt-cpu-noreloc.html > > * igt at gem_exec_reloc@basic-scanout: > - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3281]) +13 other tests skip > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at gem_exec_reloc@basic-scanout.html > > * igt at gem_exec_reloc@basic-wc-gtt-noreloc: > - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +11 other tests skip > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_exec_reloc@basic-wc-gtt-noreloc.html > > * igt at gem_exec_schedule@deep at rcs0: > - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4537]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 5/igt at gem_exec_schedule@deep at rcs0.html > > * igt at gem_exec_schedule@preempt-queue-chain: > - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at gem_exec_schedule@preempt-queue-chain.html > > * igt at gem_exec_suspend@basic-s3 at smem: > - shard-glk: [PASS][60] -> [INCOMPLETE][61] ([i915#13196]) +1 other > test incomplete > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > glk5/igt at gem_exec_suspend@basic-s3 at smem.html > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk6/igt at gem_exec_suspend@basic-s3 at smem.html > > * igt at gem_fence_thrash@bo-write-verify-none: > - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 12/igt at gem_fence_thrash@bo-write-verify-none.html > > * igt at gem_fenced_exec_thrash@2-spare-fences: > - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at gem_fenced_exec_thrash@2-spare-fences.html > > * igt at gem_lmem_swapping@heavy-verify-multi-ccs: > - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html > > * igt at gem_lmem_swapping@parallel-random: > - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at gem_lmem_swapping@parallel-random.html > > * igt at gem_lmem_swapping@parallel-random-verify-ccs: > - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +5 other tests skip > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at gem_lmem_swapping@parallel-random-verify-ccs.html > > * igt at gem_lmem_swapping@random-engines: > - shard-glk: NOTRUN -> [SKIP][67] ([i915#4613]) +7 other tests skip > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk2/igt at gem_lmem_swapping@random-engines.html > > * igt at gem_lmem_swapping@smem-oom at lmem0: > - shard-dg1: NOTRUN -> [TIMEOUT][68] ([i915#5493]) +1 other test > timeout > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at gem_lmem_swapping@smem-oom at lmem0.html > > * igt at gem_madvise@dontneed-before-pwrite: > - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 1/igt at gem_madvise@dontneed-before-pwrite.html > > * igt at gem_media_vme: > - shard-dg1: NOTRUN -> [SKIP][70] ([i915#284]) > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at gem_media_vme.html > > * igt at gem_mmap@basic: > - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 6/igt at gem_mmap@basic.html > > * igt at gem_mmap_gtt@basic-read: > - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4077]) +14 other tests skip > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at gem_mmap_gtt@basic-read.html > > * igt at gem_mmap_gtt@close-race: > - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) +1 other test skip > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 8/igt at gem_mmap_gtt@close-race.html > > * igt at gem_mmap_wc@bad-size: > - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at gem_mmap_wc@bad-size.html > > * igt at gem_mmap_wc@copy: > - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +1 other test skip > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at gem_mmap_wc@copy.html > > * igt at gem_partial_pwrite_pread@reads-snoop: > - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at gem_partial_pwrite_pread@reads-snoop.html > > * igt at gem_partial_pwrite_pread@writes-after-reads-display: > - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at gem_partial_pwrite_pread@writes-after-reads-display.html > > * igt at gem_pread@exhaustion: > - shard-snb: NOTRUN -> [WARN][78] ([i915#2658]) > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb2/igt at gem_pread@exhaustion.html > - shard-tglu: NOTRUN -> [WARN][79] ([i915#2658]) > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 7/igt at gem_pread@exhaustion.html > > * igt at gem_pxp@create-valid-protected-context: > - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12964]) > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at gem_pxp@create-valid-protected-context.html > > * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: > - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +4 other tests skip > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html > > * igt at gem_pxp@protected-encrypted-src-copy-not-readible: > - shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12917] / [i915#12964]) > +3 other tests timeout > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html > > * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: > - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +1 other test skip > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html > - shard-tglu: [PASS][84] -> [SKIP][85] ([i915#4270]) +1 other test skip > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 3/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html > - shard-rkl: NOTRUN -> [SKIP][86] ([i915#4270]) > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html > > * igt at gem_readwrite@write-bad-handle: > - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282]) +1 other test skip > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at gem_readwrite@write-bad-handle.html > > * igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled: > - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8428]) > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 8/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled.html > > * igt at gem_render_copy@yf-tiled-to-vebox-x-tiled: > - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +5 > other tests skip > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 10/igt at gem_render_copy@yf-tiled-to-vebox-x-tiled.html > > * igt at gem_set_tiling_vs_gtt: > - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4079]) +1 other test skip > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at gem_set_tiling_vs_gtt.html > > * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: > - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4077]) +15 other tests skip > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html > > * igt at gem_tiled_pread_basic: > - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4079]) +1 other test skip > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at gem_tiled_pread_basic.html > > * igt at gem_userptr_blits@access-control: > - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at gem_userptr_blits@access-control.html > > * igt at gem_userptr_blits@coherency-sync: > - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at gem_userptr_blits@coherency-sync.html > > * igt at gem_userptr_blits@coherency-unsync: > - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at gem_userptr_blits@coherency-unsync.html > > * igt at gem_userptr_blits@create-destroy-unsync: > - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at gem_userptr_blits@create-destroy-unsync.html > > * igt at gem_userptr_blits@dmabuf-sync: > - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#3323]) > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at gem_userptr_blits@dmabuf-sync.html > > * igt at gem_userptr_blits@forbidden-operations: > - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3282] / [i915#3297]) > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at gem_userptr_blits@forbidden-operations.html > > * igt at gem_userptr_blits@unsync-unmap-after-close: > - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#3297]) > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at gem_userptr_blits@unsync-unmap-after-close.html > > * igt at gen9_exec_parse@bb-large: > - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at gen9_exec_parse@bb-large.html > > * igt at gen9_exec_parse@shadow-peek: > - shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +2 other tests skip > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at gen9_exec_parse@shadow-peek.html > > * igt at gen9_exec_parse@unaligned-access: > - shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +2 other tests skip > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at gen9_exec_parse@unaligned-access.html > - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +2 other tests skip > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at gen9_exec_parse@unaligned-access.html > > * igt at gen9_exec_parse@unaligned-jump: > - shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +5 > other tests skip > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at gen9_exec_parse@unaligned-jump.html > - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at gen9_exec_parse@unaligned-jump.html > > * igt at i915_module_load@reload-with-fault-injection: > - shard-dg1: [PASS][106] -> [ABORT][107] ([i915#9820]) > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg1- > 12/igt at i915_module_load@reload-with-fault-injection.html > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 12/igt at i915_module_load@reload-with-fault-injection.html > - shard-mtlp: [PASS][108] -> [ABORT][109] ([i915#10131] / > [i915#9820]) > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 3/igt at i915_module_load@reload-with-fault-injection.html > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at i915_module_load@reload-with-fault-injection.html > > * igt at i915_module_load@resize-bar: > - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6412]) > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at i915_module_load@resize-bar.html > - shard-tglu: NOTRUN -> [SKIP][111] ([i915#6412]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at i915_module_load@resize-bar.html > > * igt at i915_pm_freq_api@freq-basic-api: > - shard-rkl: NOTRUN -> [SKIP][112] ([i915#8399]) > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at i915_pm_freq_api@freq-basic-api.html > > * igt at i915_pm_freq_api@freq-suspend: > - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#8399]) > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at i915_pm_freq_api@freq-suspend.html > > * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: > - shard-dg1: NOTRUN -> [FAIL][114] ([i915#3591]) +1 other test fail > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html > > * igt at i915_pm_rpm@debugfs-read: > - shard-dg1: NOTRUN -> [DMESG-WARN][115] ([i915#4423]) > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at i915_pm_rpm@debugfs-read.html > > * igt at i915_pm_rpm@system-suspend-execbuf: > - shard-dg2: [PASS][116] -> [ABORT][117] ([i915#12773]) > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 11/igt at i915_pm_rpm@system-suspend-execbuf.html > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 4/igt at i915_pm_rpm@system-suspend-execbuf.html > - shard-glk: NOTRUN -> [INCOMPLETE][118] ([i915#12797]) > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk7/igt at i915_pm_rpm@system-suspend-execbuf.html > > * igt at i915_pm_rps@min-max-config-loaded: > - shard-dg2: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at i915_pm_rps@min-max-config-loaded.html > - shard-dg1: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at i915_pm_rps@min-max-config-loaded.html > > * igt at i915_power@sanity: > - shard-mtlp: [PASS][121] -> [SKIP][122] ([i915#7984]) > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 7/igt at i915_power@sanity.html > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 6/igt at i915_power@sanity.html > - shard-rkl: NOTRUN -> [SKIP][123] ([i915#7984]) > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 1/igt at i915_power@sanity.html > > * igt at i915_query@test-query-geometry-subslices: > - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5723]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at i915_query@test-query-geometry-subslices.html > > * igt at i915_selftest@mock: > - shard-glk: NOTRUN -> [DMESG-WARN][125] ([i915#9311]) +1 other > test dmesg-warn > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk2/igt at i915_selftest@mock.html > > * igt at i915_selftest@mock at memory_region: > - shard-dg2: NOTRUN -> [DMESG-WARN][126] ([i915#9311]) +1 other > test dmesg-warn > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at i915_selftest@mock at memory_region.html > - shard-tglu: NOTRUN -> [DMESG-WARN][127] ([i915#9311]) > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at i915_selftest@mock at memory_region.html > > * igt at i915_suspend@basic-s3-without-i915: > - shard-tglu-1: NOTRUN -> [INCOMPLETE][128] ([i915#7443]) > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at i915_suspend@basic-s3-without-i915.html > > * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: > - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212]) > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html > > * igt at kms_addfb_basic@framebuffer-vs-set-tiling: > - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4212]) > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 10/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html > > * igt at kms_async_flips@async-flip-suspend-resume: > - shard-rkl: [PASS][131] -> [DMESG-FAIL][132] ([i915#12964]) +1 other > test dmesg-fail > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 2/igt at kms_async_flips@async-flip-suspend-resume.html > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_async_flips@async-flip-suspend-resume.html > > * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a- > hdmi-a-4-y-rc-ccs-cc: > - shard-dg1: NOTRUN -> [SKIP][133] ([i915#8709]) +7 other tests skip > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a- > hdmi-a-4-y-rc-ccs-cc.html > > * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b- > hdmi-a-2-y-rc-ccs: > - shard-rkl: NOTRUN -> [SKIP][134] ([i915#8709]) +3 other tests skip > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b- > hdmi-a-2-y-rc-ccs.html > > * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-hdmi-a-1- > 4-mc-ccs: > - shard-dg2: NOTRUN -> [SKIP][135] ([i915#8709]) +11 other tests skip > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-hdmi-a-1- > 4-mc-ccs.html > > * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: > - shard-snb: NOTRUN -> [INCOMPLETE][136] ([i915#13287]) > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb4/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html > > * igt at kms_atomic@atomic-invalid-params: > - shard-dg1: [PASS][137] -> [DMESG-WARN][138] ([i915#4423]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg1- > 12/igt at kms_atomic@atomic-invalid-params.html > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at kms_atomic@atomic-invalid-params.html > > * igt at kms_atomic@plane-primary-overlay-mutable-zpos: > - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9531]) > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html > - shard-dg1: NOTRUN -> [SKIP][140] ([i915#9531]) > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 12/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html > > * igt at kms_atomic_transition@plane-all-modeset-transition-fencing- > internal-panels: > - shard-glk: NOTRUN -> [SKIP][141] ([i915#1769]) +1 other test skip > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing- > internal-panels.html > > * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: > - shard-snb: NOTRUN -> [SKIP][142] ([i915#1769]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at kms_atomic_transition@plane-all-modeset-transition-internal- > panels.html > > * igt at kms_atomic_transition@plane-all-modeset-transition-internal- > panels at pipe-a-edp-1: > - shard-mtlp: [PASS][143] -> [FAIL][144] ([i915#11808] / [i915#5956]) > +1 other test fail > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 5/igt at kms_atomic_transition@plane-all-modeset-transition-internal- > panels at pipe-a-edp-1.html > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 8/igt at kms_atomic_transition@plane-all-modeset-transition-internal- > panels at pipe-a-edp-1.html > > * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi- > a-1: > - shard-tglu: NOTRUN -> [FAIL][145] ([i915#11808]) +1 other test fail > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi- > a-1.html > > * igt at kms_big_fb@4-tiled-64bpp-rotate-90: > - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5286]) +7 > other tests skip > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html > > * igt at kms_big_fb@4-tiled-8bpp-rotate-0: > - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5286]) +6 other tests skip > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html > > * igt at kms_big_fb@4-tiled-addfb: > - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#5286]) +1 other test skip > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_big_fb@4-tiled-addfb.html > > * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: > - shard-tglu: NOTRUN -> [SKIP][149] ([i915#5286]) +6 other tests skip > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html > > * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: > - shard-mtlp: [PASS][150] -> [DMESG-FAIL][151] ([i915#11627] / > [i915#13314]) > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > > * igt at kms_big_fb@linear-64bpp-rotate-90: > - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3638]) +1 other test skip > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_big_fb@linear-64bpp-rotate-90.html > > * igt at kms_big_fb@linear-8bpp-rotate-90: > - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3638]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_big_fb@linear-8bpp-rotate-90.html > > * igt at kms_big_fb@x-tiled-64bpp-rotate-270: > - shard-dg2: NOTRUN -> [SKIP][154] +10 other tests skip > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 5/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html > > * igt at kms_big_fb@y-tiled-64bpp-rotate-90: > - shard-mtlp: NOTRUN -> [SKIP][155] +4 other tests skip > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html > > * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +10 > other tests skip > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async- > flip.html > > * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4538]) +4 other tests skip > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async- > flip.html > > * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > - shard-tglu: NOTRUN -> [SKIP][158] ([i915#12313]) +3 other tests skip > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 6/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html > > * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-1: > - shard-tglu: NOTRUN -> [SKIP][159] ([i915#6095]) +64 other tests skip > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 4/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-1.html > > * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: > - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) > +143 other tests skip > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html > > * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: > - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#12313]) > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html > > * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-c-edp- > 1: > - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6095]) +14 other tests > skip > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-c-edp- > 1.html > > * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi- > a-1: > - shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#10434] / > [i915#6095]) +1 other test skip > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi- > a-1.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: > - shard-dg1: NOTRUN -> [SKIP][164] ([i915#12805]) > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][165] ([i915#6095]) +85 other tests skip > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a- > 2.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: > - shard-rkl: NOTRUN -> [SKIP][166] ([i915#12805]) > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a- > 3: > - shard-dg1: NOTRUN -> [SKIP][167] ([i915#6095]) +147 other tests > skip > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a- > 3.html > > * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: > - shard-dg2: NOTRUN -> [SKIP][168] ([i915#12313]) > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html > > * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a- > 1: > - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#6095]) +19 other tests > skip > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a- > 1.html > > * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: > - shard-rkl: NOTRUN -> [SKIP][170] ([i915#12313]) > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html > > * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][171] ([i915#7213]) +3 other tests skip > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html > > * igt at kms_cdclk@plane-scaling: > - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3742]) > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 2/igt at kms_cdclk@plane-scaling.html > > * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4087]) +3 other tests skip > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html > > * igt at kms_chamelium_audio@hdmi-audio-edid: > - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#7828]) +1 other test skip > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_chamelium_audio@hdmi-audio-edid.html > > * igt at kms_chamelium_hpd@hdmi-hpd-fast: > - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#7828]) +1 other test skip > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_chamelium_hpd@hdmi-hpd-fast.html > > * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: > - shard-tglu: NOTRUN -> [SKIP][176] ([i915#7828]) +10 other tests skip > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 7/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html > > * igt at kms_chamelium_hpd@vga-hpd-after-suspend: > - shard-dg2: NOTRUN -> [SKIP][177] ([i915#7828]) +7 other tests skip > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html > > * igt at kms_chamelium_hpd@vga-hpd-fast: > - shard-rkl: NOTRUN -> [SKIP][178] ([i915#7828]) +10 other tests skip > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_chamelium_hpd@vga-hpd-fast.html > - shard-dg1: NOTRUN -> [SKIP][179] ([i915#7828]) +8 other tests skip > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_chamelium_hpd@vga-hpd-fast.html > > * igt at kms_color@deep-color: > - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#9979]) > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at kms_color@deep-color.html > > * igt at kms_content_protection@atomic: > - shard-dg1: NOTRUN -> [SKIP][181] ([i915#7116] / [i915#9424]) +1 > other test skip > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at kms_content_protection@atomic.html > > * igt at kms_content_protection@content-type-change: > - shard-rkl: NOTRUN -> [SKIP][182] ([i915#9424]) > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_content_protection@content-type-change.html > - shard-dg1: NOTRUN -> [SKIP][183] ([i915#4423] / [i915#9424]) > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_content_protection@content-type-change.html > > * igt at kms_content_protection@dp-mst-type-0: > - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3116]) +1 other test skip > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 1/igt at kms_content_protection@dp-mst-type-0.html > > * igt at kms_content_protection@srm: > - shard-rkl: NOTRUN -> [SKIP][185] ([i915#7118]) > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_content_protection@srm.html > > * igt at kms_cursor_crc@cursor-offscreen-512x170: > - shard-dg2: NOTRUN -> [SKIP][186] ([i915#13049]) +2 other tests skip > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_cursor_crc@cursor-offscreen-512x170.html > > * igt at kms_cursor_crc@cursor-offscreen-max-size: > - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814]) > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_cursor_crc@cursor-offscreen-max-size.html > > * igt at kms_cursor_crc@cursor-onscreen-32x32: > - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555]) +3 other tests skip > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_cursor_crc@cursor-onscreen-32x32.html > > * igt at kms_cursor_crc@cursor-random-512x512: > - shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_cursor_crc@cursor-random-512x512.html > > * igt at kms_cursor_crc@cursor-rapid-movement-512x512: > - shard-tglu: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html > > * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4213]) +1 other test skip > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > > * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > - shard-dg1: NOTRUN -> [SKIP][192] ([i915#4103] / [i915#4213]) +1 > other test skip > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html > > * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: > - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13046] / [i915#5354]) +3 > other tests skip > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html > > * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: > - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9809]) +1 other test skip > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html > > * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: > - shard-rkl: NOTRUN -> [SKIP][195] +15 other tests skip > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html > > * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: > - shard-dg2: NOTRUN -> [SKIP][196] ([i915#9067]) > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html > - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#9067]) > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html > > * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: > - shard-tglu: NOTRUN -> [SKIP][198] ([i915#4103]) > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html > > * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: > - shard-tglu: NOTRUN -> [SKIP][199] ([i915#9723]) > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html > > * igt at kms_dither@fb-8bpc-vs-panel-8bpc: > - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555]) +1 other test skip > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html > > * igt at kms_dsc@dsc-basic: > - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) +3 > other tests skip > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_dsc@dsc-basic.html > > * igt at kms_dsc@dsc-fractional-bpp-with-bpc: > - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3840]) > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html > > * igt at kms_dsc@dsc-with-formats: > - shard-tglu: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) +2 > other tests skip > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 9/igt at kms_dsc@dsc-with-formats.html > > * igt at kms_dsc@dsc-with-output-formats: > - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 3/igt at kms_dsc@dsc-with-output-formats.html > - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) +1 > other test skip > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_dsc@dsc-with-output-formats.html > > * igt at kms_fbcon_fbt@psr: > - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3469]) > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 6/igt at kms_fbcon_fbt@psr.html > > * igt at kms_feature_discovery@display-4x: > - shard-rkl: NOTRUN -> [SKIP][207] ([i915#1839]) > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_feature_discovery@display-4x.html > - shard-tglu: NOTRUN -> [SKIP][208] ([i915#1839]) +1 other test skip > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at kms_feature_discovery@display-4x.html > > * igt at kms_feature_discovery@psr2: > - shard-dg1: NOTRUN -> [SKIP][209] ([i915#658]) > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_feature_discovery@psr2.html > - shard-rkl: NOTRUN -> [SKIP][210] ([i915#658]) > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at kms_feature_discovery@psr2.html > > * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: > - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3637]) > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 3/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html > > * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: > - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3637]) +7 other tests skip > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html > > * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: > - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9934]) +3 other tests skip > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html > > * igt at kms_flip@2x-flip-vs-fences-interruptible: > - shard-dg1: NOTRUN -> [SKIP][214] ([i915#8381]) > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_flip@2x-flip-vs-fences-interruptible.html > - shard-dg2: NOTRUN -> [SKIP][215] ([i915#8381]) > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at kms_flip@2x-flip-vs-fences-interruptible.html > > * igt at kms_flip@2x-flip-vs-modeset-vs-hang: > - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9934]) +7 other tests skip > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html > > * igt at kms_flip@2x-flip-vs-suspend-interruptible: > - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3637]) > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_flip@2x-flip-vs-suspend-interruptible.html > > * igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2: > - shard-glk: NOTRUN -> [INCOMPLETE][218] ([i915#4839]) > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk3/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html > > * igt at kms_flip@2x-plain-flip-ts-check-interruptible: > - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +9 other tests skip > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html > > * igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1: > - shard-snb: [PASS][220] -> [FAIL][221] ([i915#11989]) +1 other test > fail > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb7/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi- > a1.html > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi- > a1.html > > * igt at kms_flip@flip-vs-suspend: > - shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#12745] / > [i915#4839]) +1 other test incomplete > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk3/igt at kms_flip@flip-vs-suspend.html > > * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: > - shard-glk: NOTRUN -> [INCOMPLETE][223] ([i915#12745]) > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk3/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html > > * igt at kms_flip@plain-flip-fb-recreate-interruptible: > - shard-tglu: [PASS][224] -> [FAIL][225] ([i915#11989]) +2 other tests > fail > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 3/igt at kms_flip@plain-flip-fb-recreate-interruptible.html > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at kms_flip@plain-flip-fb-recreate-interruptible.html > > * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: > - shard-rkl: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555]) +2 > other tests skip > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile- > downscaling.html > > * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > downscaling at pipe-a-valid-mode: > - shard-tglu: NOTRUN -> [SKIP][227] ([i915#2587] / [i915#2672]) +2 > other tests skip > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > downscaling at pipe-a-valid-mode.html > > * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: > - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +1 > other test skip > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > upscaling.html > > * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile- > upscaling at pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672]) +2 other tests skip > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile- > upscaling at pipe-a-valid-mode.html > > * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: > - shard-tglu: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555]) +2 > other tests skip > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile- > upscaling.html > > * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: > - shard-dg1: NOTRUN -> [SKIP][231] ([i915#2587] / [i915#2672] / > [i915#3555]) > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs- > downscaling.html > > * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling: > - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling.html > > * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling at pipe-a-valid-mode: > - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672]) > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling at pipe-a-valid-mode.html > > * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: > - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 > other tests skip > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html > - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555] / > [i915#8813]) +1 other test skip > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html > > * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile- > upscaling at pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#8813]) +1 > other test skip > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile- > upscaling at pipe-a-default-mode.html > > * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile- > upscaling at pipe-a-valid-mode: > - shard-dg1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +3 > other tests skip > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile- > upscaling at pipe-a-valid-mode.html > - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672]) +3 other tests skip > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile- > upscaling at pipe-a-valid-mode.html > > * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: > - shard-dg2: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555] / > [i915#5190]) +1 other test skip > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile- > downscaling.html > > * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: > - shard-snb: [PASS][240] -> [SKIP][241] > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb- > fullscreen.html > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb- > fullscreen.html > > * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: > - shard-rkl: NOTRUN -> [SKIP][242] ([i915#1825]) +35 other tests skip > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html > > * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap- > wc: > - shard-dg1: NOTRUN -> [SKIP][243] ([i915#8708]) +17 other tests skip > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap- > wc.html > > * igt at kms_frontbuffer_tracking@fbc-suspend: > - shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#10056]) > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk5/igt at kms_frontbuffer_tracking@fbc-suspend.html > > * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: > - shard-dg2: NOTRUN -> [SKIP][245] ([i915#3458]) +15 other tests skip > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw- > pwrite.html > > * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: > - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +20 other tests skip > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw- > render.html > > * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw- > pwrite: > - shard-tglu-1: NOTRUN -> [SKIP][247] +19 other tests skip > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw- > pwrite.html > > * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: > - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5439]) > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html > - shard-tglu: NOTRUN -> [SKIP][249] ([i915#5439]) > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html > > * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap- > wc: > - shard-dg2: NOTRUN -> [SKIP][250] ([i915#8708]) +17 other tests skip > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap- > wc.html > > * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap- > cpu: > - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#1825]) +4 other tests skip > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap- > cpu.html > > * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap- > gtt: > - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8708]) +2 other tests skip > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap- > gtt.html > > * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap- > cpu: > - shard-snb: NOTRUN -> [SKIP][253] +640 other tests skip > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw- > mmap-cpu.html > > * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap- > wc: > - shard-tglu: NOTRUN -> [SKIP][254] +99 other tests skip > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap- > wc.html > > * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: > - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3023]) +26 other tests skip > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html > > * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: > - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3458]) +11 other tests skip > [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html > > * igt at kms_hdr@brightness-with-hdr: > - shard-rkl: NOTRUN -> [SKIP][257] ([i915#1187] / [i915#12713]) > [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at kms_hdr@brightness-with-hdr.html > > * igt at kms_hdr@invalid-metadata-sizes: > - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +1 > other test skip > [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at kms_hdr@invalid-metadata-sizes.html > - shard-rkl: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) > [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_hdr@invalid-metadata-sizes.html > > * igt at kms_hdr@static-swap: > - shard-tglu: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +1 > other test skip > [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at kms_hdr@static-swap.html > > * igt at kms_hdr@static-toggle-dpms: > - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228]) > [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_hdr@static-toggle-dpms.html > > * igt at kms_hdr@static-toggle-suspend: > - shard-dg2: [PASS][262] -> [SKIP][263] ([i915#3555] / [i915#8228]) > +1 other test skip > [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 10/igt at kms_hdr@static-toggle-suspend.html > [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_hdr@static-toggle-suspend.html > > * igt at kms_joiner@basic-big-joiner: > - shard-dg2: NOTRUN -> [SKIP][264] ([i915#10656]) +1 other test skip > [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_joiner@basic-big-joiner.html > > * igt at kms_joiner@basic-force-big-joiner: > - shard-dg2: NOTRUN -> [SKIP][265] ([i915#12388]) > [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at kms_joiner@basic-force-big-joiner.html > > * igt at kms_joiner@basic-force-ultra-joiner: > - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12394]) > [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at kms_joiner@basic-force-ultra-joiner.html > - shard-rkl: NOTRUN -> [SKIP][267] ([i915#12394]) > [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_joiner@basic-force-ultra-joiner.html > > * igt at kms_joiner@basic-ultra-joiner: > - shard-rkl: NOTRUN -> [SKIP][268] ([i915#12339]) > [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_joiner@basic-ultra-joiner.html > > * igt at kms_joiner@invalid-modeset-big-joiner: > - shard-tglu: NOTRUN -> [SKIP][269] ([i915#10656]) > [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at kms_joiner@invalid-modeset-big-joiner.html > - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#10656]) > [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 3/igt at kms_joiner@invalid-modeset-big-joiner.html > > * igt at kms_joiner@invalid-modeset-force-big-joiner: > - shard-rkl: NOTRUN -> [SKIP][271] ([i915#12388]) > [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at kms_joiner@invalid-modeset-force-big-joiner.html > - shard-tglu: NOTRUN -> [SKIP][272] ([i915#12388]) > [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 2/igt at kms_joiner@invalid-modeset-force-big-joiner.html > > * igt at kms_panel_fitting@atomic-fastset: > - shard-tglu: NOTRUN -> [SKIP][273] ([i915#6301]) > [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at kms_panel_fitting@atomic-fastset.html > > * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: > - shard-dg1: NOTRUN -> [SKIP][274] +30 other tests skip > [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 12/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html > > * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b: > - shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#13026]) > [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk1/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b.html > > * igt at kms_plane_alpha_blend@alpha-transparent-fb: > - shard-glk: NOTRUN -> [FAIL][276] ([i915#12177]) > [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk2/igt at kms_plane_alpha_blend@alpha-transparent-fb.html > > * igt at kms_plane_alpha_blend@constant-alpha-max: > - shard-glk: NOTRUN -> [FAIL][277] ([i915#12169]) > [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk7/igt at kms_plane_alpha_blend@constant-alpha-max.html > > * igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1: > - shard-glk: NOTRUN -> [FAIL][278] ([i915#10647]) +3 other tests fail > [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk7/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a- > 1.html > > * igt at kms_plane_scaling@plane-downscale-factor-0-25-with- > modifiers at pipe-a: > - shard-rkl: NOTRUN -> [SKIP][279] ([i915#12247]) +9 other tests skip > [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with- > modifiers at pipe-a.html > > * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel- > format at pipe-c: > - shard-tglu: NOTRUN -> [SKIP][280] ([i915#12247]) +18 other tests > skip > [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel- > format at pipe-c.html > > * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: > - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555]) +4 other tests skip > [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html > > * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: > - shard-dg1: NOTRUN -> [SKIP][282] ([i915#12247]) +13 other tests > skip > [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html > > * igt at kms_plane_scaling@planes-downscale-factor-0-25: > - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#6953]) > [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at kms_plane_scaling@planes-downscale-factor-0-25.html > > * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0- > 25: > - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#6953] / > [i915#9423]) > [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0- > 25.html > > * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0- > 25 at pipe-a: > - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247]) +7 other tests skip > [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0- > 25 at pipe-a.html > > * igt at kms_plane_scaling@planes-downscale-factor-0-75: > - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#3555] / > [i915#6953]) > [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at kms_plane_scaling@planes-downscale-factor-0-75.html > > * igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b: > - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12247]) +8 other tests > skip > [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b.html > > * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: > - shard-dg1: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953]) > [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html > > * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: > - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#3555] / > [i915#9423]) > [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0- > 25.html > - shard-rkl: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#3555]) > [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0- > 25.html > > * igt at kms_pm_backlight@basic-brightness: > - shard-dg1: NOTRUN -> [SKIP][291] ([i915#5354]) > [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at kms_pm_backlight@basic-brightness.html > > * igt at kms_pm_backlight@brightness-with-dpms: > - shard-tglu: NOTRUN -> [SKIP][292] ([i915#12343]) > [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 5/igt at kms_pm_backlight@brightness-with-dpms.html > - shard-dg2: NOTRUN -> [SKIP][293] ([i915#12343]) > [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_pm_backlight@brightness-with-dpms.html > > * igt at kms_pm_backlight@fade: > - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9812]) > [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_pm_backlight@fade.html > > * igt at kms_pm_backlight@fade-with-dpms: > - shard-rkl: NOTRUN -> [SKIP][295] ([i915#5354]) > [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at kms_pm_backlight@fade-with-dpms.html > - shard-tglu: NOTRUN -> [SKIP][296] ([i915#9812]) > [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at kms_pm_backlight@fade-with-dpms.html > > * igt at kms_pm_dc@dc5-psr: > - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9685]) > [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 2/igt at kms_pm_dc@dc5-psr.html > > * igt at kms_pm_dc@dc5-retention-flops: > - shard-tglu: NOTRUN -> [SKIP][298] ([i915#3828]) > [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at kms_pm_dc@dc5-retention-flops.html > > * igt at kms_pm_dc@dc6-dpms: > - shard-tglu: [PASS][299] -> [FAIL][300] ([i915#9295]) > [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 3/igt at kms_pm_dc@dc6-dpms.html > [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 7/igt at kms_pm_dc@dc6-dpms.html > > * igt at kms_pm_dc@dc6-psr: > - shard-dg1: NOTRUN -> [SKIP][301] ([i915#9685]) > [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at kms_pm_dc@dc6-psr.html > > * igt at kms_pm_rpm@dpms-mode-unset-lpsp: > - shard-dg2: [PASS][302] -> [SKIP][303] ([i915#9519]) > [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 8/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html > [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html > > * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-rkl: NOTRUN -> [SKIP][304] ([i915#9519]) +1 other test skip > [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt at kms_pm_rpm@modeset-lpsp-stress: > - shard-dg2: NOTRUN -> [SKIP][305] ([i915#9519]) > [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 11/igt at kms_pm_rpm@modeset-lpsp-stress.html > > * igt at kms_pm_rpm@modeset-non-lpsp: > - shard-rkl: [PASS][306] -> [SKIP][307] ([i915#9519]) +1 other test skip > [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 5/igt at kms_pm_rpm@modeset-non-lpsp.html > [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_pm_rpm@modeset-non-lpsp.html > > * igt at kms_pm_rpm@system-suspend-modeset: > - shard-glk: [PASS][308] -> [INCOMPLETE][309] ([i915#10553]) > [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > glk3/igt at kms_pm_rpm@system-suspend-modeset.html > [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk9/igt at kms_pm_rpm@system-suspend-modeset.html > > * igt at kms_prime@basic-modeset-hybrid: > - shard-dg1: NOTRUN -> [SKIP][310] ([i915#6524]) > [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_prime@basic-modeset-hybrid.html > - shard-dg2: NOTRUN -> [SKIP][311] ([i915#6524] / [i915#6805]) > [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at kms_prime@basic-modeset-hybrid.html > > * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully- > sf at pipe-a-edp-1: > - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#9808]) > [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully- > sf at pipe-a-edp-1.html > > * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: > - shard-rkl: NOTRUN -> [SKIP][313] ([i915#11520]) +7 other tests skip > [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html > > * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: > - shard-snb: NOTRUN -> [SKIP][314] ([i915#11520]) +18 other tests > skip > [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html > > * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: > - shard-dg1: NOTRUN -> [SKIP][315] ([i915#11520]) +8 other tests skip > [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html > > * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: > - shard-tglu: NOTRUN -> [SKIP][316] ([i915#11520]) +12 other tests > skip > [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 4/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html > - shard-glk: NOTRUN -> [SKIP][317] ([i915#11520]) +16 other tests > skip > [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk8/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html > > * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: > - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12316]) +2 other tests > skip > [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html > > * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: > - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#11520]) > [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html > > * igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: > - shard-dg2: NOTRUN -> [SKIP][320] ([i915#11520]) +5 other tests skip > [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html > > * igt at kms_psr2_su@page_flip-p010: > - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9683]) > [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_psr2_su@page_flip-p010.html > > * igt at kms_psr2_su@page_flip-xrgb8888: > - shard-rkl: NOTRUN -> [SKIP][322] ([i915#9683]) > [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_psr2_su@page_flip-xrgb8888.html > > * igt at kms_psr@fbc-pr-suspend: > - shard-dg2: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +19 > other tests skip > [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at kms_psr@fbc-pr-suspend.html > > * igt at kms_psr@fbc-psr-sprite-mmap-cpu: > - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9732]) +3 other tests skip > [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 1/igt at kms_psr@fbc-psr-sprite-mmap-cpu.html > > * igt at kms_psr@fbc-psr2-cursor-blt at edp-1: > - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#9688]) +8 other tests skip > [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 8/igt at kms_psr@fbc-psr2-cursor-blt at edp-1.html > > * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: > - shard-dg1: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +18 > other tests skip > [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html > > * igt at kms_psr@pr-basic: > - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9732]) +22 other tests skip > [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at kms_psr@pr-basic.html > > * igt at kms_psr@psr2-sprite-plane-onoff: > - shard-glk: NOTRUN -> [SKIP][328] +481 other tests skip > [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk4/igt at kms_psr@psr2-sprite-plane-onoff.html > > * igt at kms_psr@psr2-suspend: > - shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +23 > other tests skip > [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_psr@psr2-suspend.html > > * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: > - shard-rkl: NOTRUN -> [SKIP][330] ([i915#5289]) > [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html > - shard-tglu: NOTRUN -> [SKIP][331] ([i915#5289]) > [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html > > * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: > - shard-dg2: NOTRUN -> [SKIP][332] ([i915#12755] / [i915#5190]) > [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 1/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html > > * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: > - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#5289]) > [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html > > * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: > - shard-dg1: NOTRUN -> [SKIP][334] ([i915#5289]) > [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html > > * igt at kms_rotation_crc@sprite-rotation-270: > - shard-dg2: NOTRUN -> [SKIP][335] ([i915#12755]) > [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_rotation_crc@sprite-rotation-270.html > > * igt at kms_scaling_modes@scaling-mode-full-aspect: > - shard-tglu: NOTRUN -> [SKIP][336] ([i915#3555]) +4 other tests skip > [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 2/igt at kms_scaling_modes@scaling-mode-full-aspect.html > > * igt at kms_selftest@drm_framebuffer: > - shard-dg1: NOTRUN -> [ABORT][337] ([i915#13179]) +1 other test > abort > [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at kms_selftest@drm_framebuffer.html > - shard-snb: NOTRUN -> [ABORT][338] ([i915#13179]) +1 other test > abort > [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb4/igt at kms_selftest@drm_framebuffer.html > - shard-tglu: NOTRUN -> [ABORT][339] ([i915#13179]) +1 other test > abort > [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at kms_selftest@drm_framebuffer.html > - shard-glk: NOTRUN -> [ABORT][340] ([i915#13179]) +1 other test > abort > [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk9/igt at kms_selftest@drm_framebuffer.html > - shard-mtlp: NOTRUN -> [ABORT][341] ([i915#13179]) +1 other test > abort > [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at kms_selftest@drm_framebuffer.html > > * igt at kms_setmode@basic at pipe-b-edp-1: > - shard-mtlp: [PASS][342] -> [FAIL][343] ([i915#5465]) +2 other tests > fail > [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 8/igt at kms_setmode@basic at pipe-b-edp-1.html > [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 2/igt at kms_setmode@basic at pipe-b-edp-1.html > > * igt at kms_setmode@basic at pipe-b-hdmi-a-3: > - shard-dg2: [PASS][344] -> [FAIL][345] ([i915#5465]) +2 other tests > fail > [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 6/igt at kms_setmode@basic at pipe-b-hdmi-a-3.html > [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 1/igt at kms_setmode@basic at pipe-b-hdmi-a-3.html > > * igt at kms_tiled_display@basic-test-pattern: > - shard-tglu: NOTRUN -> [SKIP][346] ([i915#8623]) > [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 3/igt at kms_tiled_display@basic-test-pattern.html > - shard-glk: NOTRUN -> [FAIL][347] ([i915#10959]) > [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk4/igt at kms_tiled_display@basic-test-pattern.html > - shard-rkl: NOTRUN -> [SKIP][348] ([i915#8623]) > [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_tiled_display@basic-test-pattern.html > > * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: > - shard-glk: [PASS][349] -> [INCOMPLETE][350] ([i915#12276]) > [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > glk3/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a- > 1.html > [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk8/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a- > 1.html > > * igt at kms_vrr@lobf: > - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#11920]) > [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 8/igt at kms_vrr@lobf.html > > * igt at kms_vrr@seamless-rr-switch-virtual: > - shard-rkl: NOTRUN -> [SKIP][352] ([i915#9906]) +1 other test skip > [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at kms_vrr@seamless-rr-switch-virtual.html > - shard-tglu: NOTRUN -> [SKIP][353] ([i915#9906]) +1 other test skip > [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 8/igt at kms_vrr@seamless-rr-switch-virtual.html > > * igt at kms_writeback@writeback-check-output: > - shard-dg1: NOTRUN -> [SKIP][354] ([i915#2437]) > [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at kms_writeback@writeback-check-output.html > > * igt at kms_writeback@writeback-check-output-xrgb2101010: > - shard-dg2: NOTRUN -> [SKIP][355] ([i915#2437] / [i915#9412]) > [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 2/igt at kms_writeback@writeback-check-output-xrgb2101010.html > > * igt at kms_writeback@writeback-fb-id: > - shard-tglu: NOTRUN -> [SKIP][356] ([i915#2437]) > [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 6/igt at kms_writeback@writeback-fb-id.html > > * igt at kms_writeback@writeback-fb-id-xrgb2101010: > - shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) +1 > other test skip > [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 12/igt at kms_writeback@writeback-fb-id-xrgb2101010.html > > * igt at kms_writeback@writeback-pixel-formats: > - shard-glk: NOTRUN -> [SKIP][358] ([i915#2437]) +2 other tests skip > [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk1/igt at kms_writeback@writeback-pixel-formats.html > - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) > [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at kms_writeback@writeback-pixel-formats.html > > * igt at perf@gen8-unprivileged-single-ctx-counters: > - shard-dg2: NOTRUN -> [SKIP][360] ([i915#2436]) > [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 3/igt at perf@gen8-unprivileged-single-ctx-counters.html > > * igt at perf@mi-rpc: > - shard-dg1: NOTRUN -> [SKIP][361] ([i915#2434]) > [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at perf@mi-rpc.html > > * igt at perf@per-context-mode-unprivileged: > - shard-rkl: NOTRUN -> [SKIP][362] ([i915#2435]) > [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 4/igt at perf@per-context-mode-unprivileged.html > > * igt at perf@polling at 0-rcs0: > - shard-rkl: [PASS][363] -> [DMESG-WARN][364] ([i915#12964]) +49 > other tests dmesg-warn > [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 7/igt at perf@polling at 0-rcs0.html > [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at perf@polling at 0-rcs0.html > > * igt at perf_pmu@busy-double-start at ccs0: > - shard-mtlp: [PASS][365] -> [FAIL][366] ([i915#4349]) > [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 3/igt at perf_pmu@busy-double-start at ccs0.html > [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at perf_pmu@busy-double-start at ccs0.html > > * igt at perf_pmu@cpu-hotplug: > - shard-dg2: NOTRUN -> [SKIP][367] ([i915#8850]) > [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 1/igt at perf_pmu@cpu-hotplug.html > > * igt at perf_pmu@rc6 at other-idle-gt0: > - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8516]) > [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at perf_pmu@rc6 at other-idle-gt0.html > > * igt at prime_vgem@basic-fence-read: > - shard-dg2: NOTRUN -> [SKIP][369] ([i915#3291] / [i915#3708]) > [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at prime_vgem@basic-fence-read.html > > * igt at prime_vgem@basic-gtt: > - shard-dg2: NOTRUN -> [SKIP][370] ([i915#3708] / [i915#4077]) +1 > other test skip > [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 5/igt at prime_vgem@basic-gtt.html > > * igt at prime_vgem@basic-write: > - shard-rkl: NOTRUN -> [SKIP][371] ([i915#3291] / [i915#3708]) > [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at prime_vgem@basic-write.html > > * igt at prime_vgem@fence-write-hang: > - shard-dg2: NOTRUN -> [SKIP][372] ([i915#3708]) > [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 6/igt at prime_vgem@fence-write-hang.html > > * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: > - shard-dg1: NOTRUN -> [SKIP][373] ([i915#9917]) > [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 18/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html > > > #### Possible fixes #### > > * igt at gem_ccs@suspend-resume: > - shard-dg2: [INCOMPLETE][374] ([i915#7297]) -> [PASS][375] > [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 3/igt at gem_ccs@suspend-resume.html > [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at gem_ccs@suspend-resume.html > > * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem- > lmem0: > - shard-dg2: [INCOMPLETE][376] ([i915#12392] / [i915#7297]) -> > [PASS][377] > [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 3/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem- > lmem0.html > [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem- > lmem0.html > > * igt at gem_eio@unwedge-stress: > - shard-dg1: [FAIL][378] ([i915#12714] / [i915#5784]) -> [PASS][379] > [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg1- > 13/igt at gem_eio@unwedge-stress.html > [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 14/igt at gem_eio@unwedge-stress.html > > * igt at gem_exec_big@single: > - shard-tglu: [ABORT][380] ([i915#11713]) -> [PASS][381] > [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 6/igt at gem_exec_big@single.html > [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at gem_exec_big@single.html > > * igt at gem_mmap_offset@clear-via-pagefault: > - shard-mtlp: [ABORT][382] ([i915#10729]) -> [PASS][383] +1 other > test pass > [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 7/igt at gem_mmap_offset@clear-via-pagefault.html > [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 7/igt at gem_mmap_offset@clear-via-pagefault.html > > * igt at gem_pxp@create-valid-protected-context: > - shard-tglu: [SKIP][384] ([i915#4270]) -> [PASS][385] > [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 3/igt at gem_pxp@create-valid-protected-context.html > [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 2/igt at gem_pxp@create-valid-protected-context.html > > * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: > - shard-mtlp: [ABORT][386] ([i915#13193]) -> [PASS][387] > [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-mtlp- > 4/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html > [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-mtlp- > 4/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html > > * igt at gem_tiled_swapping@non-threaded: > - shard-tglu: [FAIL][388] -> [PASS][389] > [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 8/igt at gem_tiled_swapping@non-threaded.html > [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 9/igt at gem_tiled_swapping@non-threaded.html > > * igt at gem_workarounds@suspend-resume: > - shard-glk: [INCOMPLETE][390] -> [PASS][391] > [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > glk5/igt at gem_workarounds@suspend-resume.html > [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk4/igt at gem_workarounds@suspend-resume.html > > * igt at i915_module_load@reload-with-fault-injection: > - shard-snb: [ABORT][392] ([i915#9820]) -> [PASS][393] > [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb4/igt at i915_module_load@reload-with-fault-injection.html > [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb7/igt at i915_module_load@reload-with-fault-injection.html > > * igt at i915_pm_rps@reset: > - shard-dg1: [FAIL][394] -> [PASS][395] > [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg1- > 18/igt at i915_pm_rps@reset.html > [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 13/igt at i915_pm_rps@reset.html > > * igt at i915_selftest@mock at sanitycheck: > - shard-tglu: [ABORT][396] ([i915#13010]) -> [PASS][397] +2 other > tests pass > [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 7/igt at i915_selftest@mock at sanitycheck.html > [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-tglu- > 10/igt at i915_selftest@mock at sanitycheck.html > > * igt at kms_color@deep-color: > - shard-dg2: [SKIP][398] ([i915#3555]) -> [PASS][399] > [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 8/igt at kms_color@deep-color.html > [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 10/igt at kms_color@deep-color.html > > * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: > - shard-snb: [INCOMPLETE][400] -> [PASS][401] > [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb5/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html > [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb4/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html > > * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-snb: [FAIL][402] ([i915#2346]) -> [PASS][403] > [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying- > size.html > [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb4/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying- > size.html > > * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: > - shard-snb: [FAIL][404] ([i915#11989]) -> [PASS][405] +1 other test > pass > [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb4/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html > [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html > > * igt at kms_flip@dpms-vs-vblank-race: > - shard-dg1: [DMESG-WARN][406] ([i915#4423]) -> [PASS][407] > [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg1- > 12/igt at kms_flip@dpms-vs-vblank-race.html > [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg1- > 17/igt at kms_flip@dpms-vs-vblank-race.html > > * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile- > downscaling at pipe-a-valid-mode: > - shard-rkl: [DMESG-WARN][408] ([i915#12964]) -> [PASS][409] +37 > other tests pass > [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile- > downscaling at pipe-a-valid-mode.html > [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile- > downscaling at pipe-a-valid-mode.html > > * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: > - shard-dg2: [FAIL][410] ([i915#6880]) -> [PASS][411] +1 other test > pass > [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw- > render.html > [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 10/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw- > render.html > > * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: > - shard-snb: [SKIP][412] -> [PASS][413] +5 other tests pass > [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > snb5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw- > pwrite.html > [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > snb1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw- > pwrite.html > > * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a: > - shard-glk: [INCOMPLETE][414] ([i915#13026]) -> [PASS][415] > [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > glk5/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html > [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk1/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html > > * igt at kms_pm_rpm@dpms-lpsp: > - shard-dg2: [SKIP][416] ([i915#9519]) -> [PASS][417] > [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-dg2- > 1/igt at kms_pm_rpm@dpms-lpsp.html > [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-dg2- > 8/igt at kms_pm_rpm@dpms-lpsp.html > > * igt at kms_pm_rpm@modeset-lpsp: > - shard-rkl: [SKIP][418] ([i915#9519]) -> [PASS][419] > [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 1/igt at kms_pm_rpm@modeset-lpsp.html > [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at kms_pm_rpm@modeset-lpsp.html > > * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > - shard-rkl: [SKIP][420] ([i915#12916]) -> [PASS][421] > [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html > [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html > > * igt at perf_pmu@most-busy-idle-check-all at rcs0: > - shard-rkl: [FAIL][422] ([i915#4349]) -> [PASS][423] +1 other test pass > [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 5/igt at perf_pmu@most-busy-idle-check-all at rcs0.html > [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 2/igt at perf_pmu@most-busy-idle-check-all at rcs0.html > > * igt at perf_pmu@rc6-suspend: > - shard-glk: [INCOMPLETE][424] ([i915#13341]) -> [PASS][425] > [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard- > glk9/igt at perf_pmu@rc6-suspend.html > [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard- > glk6/igt at perf_pmu@rc6-suspend.html > - shard-rkl: [DMESG-FAIL][426] ([i915#12964]) -> [PASS][427] > [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 3/igt at perf_pmu@rc6-suspend.html > [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 5/igt at perf_pmu@rc6-suspend.html > > > #### Warnings #### > > * igt at gem_pxp@verify-pxp-stale-buf-execution: > - shard-rkl: [TIMEOUT][428] ([i915#12917] / [i915#12964]) -> > [SKIP][429] ([i915#4270]) > [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 4/igt at gem_pxp@verify-pxp-stale-buf-execution.html > [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 7/igt at gem_pxp@verify-pxp-stale-buf-execution.html > > * igt at gem_pxp@verify-pxp-stale-ctx-execution: > - shard-rkl: [SKIP][430] ([i915#4270]) -> [TIMEOUT][431] > ([i915#12917] / [i915#12964]) > [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-rkl- > 7/igt at gem_pxp@verify-pxp-stale-ctx-execution.html > [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12314/shard-rkl- > 3/igt at gem_pxp@verify-pxp-stale-ctx-execution.html > > * igt at i915_module_load@reload-with-fault-injection: > - shard-tglu: [ABORT][432] ([i915#10887] / [i915#12817] / > [i915#9820]) -> [ABORT][433] ([i915#12817] / [i915#9820]) > [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15843/shard-tglu- > 5/igt at i915_module_load@reload-with-fault-injection.html > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm- > tip/IGTPW_12314/index.html From jeevan.b at intel.com Fri Jan 3 04:30:42 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Fri, 3 Jan 2025 04:30:42 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciB0ZXN0cy9pbnRlbC9r?= =?utf-8?B?bXNfcG1fcnBtOiBBZGQgbWFwcGFibGUgR1RUIGNoZWNrIGluIGN1cnNvciB0?= =?utf-8?Q?est?= In-Reply-To: <173417588562.2487344.10025585321276050285@b555e5b46a47> References: <20241213103228.1920627-1-jeevan.b@intel.com> <173417588562.2487344.10025585321276050285@b555e5b46a47> Message-ID: Failure not related to patch, please re-report. From: Patchwork Sent: Saturday, December 14, 2024 5:01 PM To: B, Jeevan Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.Full: failure for tests/intel/kms_pm_rpm: Add mappable GTT check in cursor test Patch Details Series: tests/intel/kms_pm_rpm: Add mappable GTT check in cursor test URL: https://patchwork.freedesktop.org/series/142544/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12314/index.html CI Bug Log - changes from XEIGT_8156_full -> XEIGTPW_12314_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12314_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12314_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12314_full: IGT changes Possible regressions * igt at kms_vblank@crtc-id: * shard-bmg: PASS -> DMESG-WARN +1 other test dmesg-warn Warnings * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: * shard-bmg: SKIP (Intel XE#2291) -> INCOMPLETE * igt at xe_evict@evict-beng-mixed-threads-large: * shard-bmg: TIMEOUT (Intel XE#1473) -> DMESG-FAIL * igt at xe_live_ktest@xe_bo: * shard-dg2-set2: TIMEOUT (Intel XE#2961 / Intel XE#2998) -> INCOMPLETE +1 other test incomplete Known issues Here are the changes found in XEIGTPW_12314_full that come from known issues: IGT changes Issues hit * igt at core_hotunplug@hotreplug: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#3467 / Intel XE#3468) * igt at core_hotunplug@hotunplug-rescan: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#3468) +13 other tests dmesg-warn * igt at core_hotunplug@unbind-rebind: * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#3468) +3 other tests dmesg-warn * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2550) +23 other tests skip * igt at kms_atomic_interruptible@legacy-setmode at pipe-a-dp-2: * shard-bmg: NOTRUN -> DMESG-WARN (Intel XE#1727 / Intel XE#3468) +6 other tests dmesg-warn * igt at kms_atomic_interruptible@legacy-setmode at pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#1727 / Intel XE#3468) +1 other test dmesg-warn * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-bmg: PASS -> DMESG-FAIL (Intel XE#3468) +14 other tests dmesg-fail * igt at kms_big_fb@y-tiled-addfb: * shard-lnl: NOTRUN -> SKIP (Intel XE#1467) * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +5 other tests skip * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +1 other test skip * igt at kms_big_fb@yf-tiled-addfb-size-overflow: * shard-bmg: NOTRUN -> SKIP (Intel XE#610) * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#610) * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +1 other test skip * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2191) * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +7 other tests skip * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs at pipe-c-dp-4: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +27 other tests skip * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +3 other tests skip * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#3468) +1 other test incomplete * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) +1 other test skip * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727 / Intel XE#2692) * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#2692) * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1152) +3 other tests skip * igt at kms_chamelium_color@ctm-limited-range: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) +1 other test skip * igt at kms_chamelium_frames@hdmi-crc-fast: * shard-bmg: NOTRUN -> SKIP (Intel XE#2252) * igt at kms_chamelium_hpd@dp-hpd: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +2 other tests skip * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +2 other tests skip * igt at kms_color@ctm-0-75 at pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#1727) +1 other test incomplete * igt at kms_content_protection@atomic at pipe-a-dp-2: * shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#2715 / Intel XE#3468) +1 other test incomplete * igt at kms_content_protection@lic-type-0: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) +1 other test fail * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#3304) * igt at kms_content_protection@mei-interface: * shard-bmg: NOTRUN -> SKIP (Intel XE#2341) * igt at kms_content_protection@srm: * shard-lnl: NOTRUN -> SKIP (Intel XE#3278) * igt at kms_cursor_crc@cursor-onscreen-256x256 at pipe-d-hdmi-a-3: * shard-bmg: NOTRUN -> DMESG-WARN (Intel XE#3468) +13 other tests dmesg-warn * igt at kms_cursor_crc@cursor-random-256x85: * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-bmg: PASS -> SKIP (Intel XE#2291) +2 other tests skip * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#323) * igt at kms_cursor_legacy@basic-flip-after-cursor-atomic: * shard-bmg: PASS -> DMESG-WARN (Intel XE#1727) * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: * shard-lnl: NOTRUN -> SKIP (Intel XE#309) * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#3226) * igt at kms_dp_aux_dev: * shard-bmg: PASS -> SKIP (Intel XE#3009) * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#3321) +1 other test fail * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +4 other tests fail * igt at kms_flip@2x-flip-vs-suspend-interruptible: * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) * igt at kms_flip@2x-flip-vs-suspend-interruptible at cd-hdmi-a6-dp4: * shard-dg2-set2: NOTRUN -> DMESG-FAIL (Intel XE#1727 / Intel XE#3468) +4 other tests dmesg-fail * igt at kms_flip@2x-plain-flip: * shard-bmg: PASS -> SKIP (Intel XE#2316) +3 other tests skip * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: * shard-bmg: NOTRUN -> FAIL (Intel XE#2882) +1 other test fail * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible at ab-hdmi-a6-dp4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#2882) +1 other test fail * igt at kms_flip@flip-vs-blocking-wf-vblank: * shard-bmg: PASS -> FAIL (Intel XE#2882) +4 other tests fail * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: * shard-lnl: PASS -> FAIL (Intel XE#886) +4 other tests fail * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727 / Intel XE#3468) +5 other tests incomplete * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: * shard-bmg: PASS -> INCOMPLETE (Intel XE#1727 / Intel XE#2705 / Intel XE#3468) +3 other tests incomplete * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1727) +15 other tests dmesg-warn * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +13 other tests skip * igt at kms_force_connector_basic@prune-stale-modes: * shard-dg2-set2: NOTRUN -> SKIP (i915#5274) * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +9 other tests skip * igt at kms_frontbuffer_tracking@fbc-tiling-linear: * shard-bmg: NOTRUN -> FAIL (Intel XE#2333) +1 other test fail * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +15 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: * shard-lnl: NOTRUN -> SKIP (Intel XE#651) * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +8 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +5 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +14 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: * shard-bmg: NOTRUN -> SKIP (Intel XE#2312) * igt at kms_hdr@invalid-hdr: * shard-bmg: PASS -> SKIP (Intel XE#1503) * igt at kms_joiner@basic-force-big-joiner: * shard-bmg: PASS -> SKIP (Intel XE#3012) * igt at kms_joiner@basic-ultra-joiner: * shard-lnl: NOTRUN -> SKIP (Intel XE#2927) * igt at kms_plane@pixel-format: * shard-bmg: PASS -> INCOMPLETE (Intel XE#1035 / Intel XE#3468) * igt at kms_plane@pixel-format-source-clamping: * shard-bmg: PASS -> INCOMPLETE (Intel XE#1035 / Intel XE#2566 / Intel XE#3468) * igt at kms_plane_cursor@viewport at pipe-a-dp-2-size-128: * shard-bmg: PASS -> DMESG-FAIL (Intel XE#2705 / Intel XE#3468) +1 other test dmesg-fail * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +3 other tests skip * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: * shard-bmg: PASS -> DMESG-WARN (Intel XE#877) +1 other test dmesg-warn * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: * shard-bmg: NOTRUN -> SKIP (Intel XE#2763) +4 other tests skip * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +1 other test skip * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +2 other tests skip * igt at kms_pm_dc@dc3co-vpb-simulation: * shard-lnl: NOTRUN -> SKIP (Intel XE#736) * igt at kms_pm_dc@dc5-dpms: * shard-lnl: PASS -> FAIL (Intel XE#718) +1 other test fail * igt at kms_pm_dc@dc6-dpms: * shard-lnl: PASS -> FAIL (Intel XE#1430) * igt at kms_pm_dc@deep-pkgc: * shard-lnl: PASS -> FAIL (Intel XE#2029) * igt at kms_pm_rpm@dpms-lpsp: * shard-bmg: NOTRUN -> SKIP (Intel XE#1439 / Intel XE#3141 / Intel XE#836) * igt at kms_pm_rpm@dpms-mode-unset-lpsp: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1727 / Intel XE#3468) +8 other tests dmesg-warn * igt at kms_pm_rpm@drm-resources-equal: * shard-dg2-set2: PASS -> ABORT (Intel XE#3468) * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) * igt at kms_psr2_sf@pr-cursor-plane-update-sf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +4 other tests skip * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: * shard-bmg: NOTRUN -> SKIP (Intel XE#1489) +2 other tests skip * igt at kms_psr2_su@page_flip-nv12: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122) * igt at kms_psr@fbc-psr2-sprite-plane-move: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +7 other tests skip * igt at kms_psr@fbc-psr2-sprite-render: * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +3 other tests skip * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2939) * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1127) * igt at kms_rotation_crc@sprite-rotation-270: * shard-lnl: NOTRUN -> SKIP (Intel XE#3414) * igt at kms_setmode@invalid-clone-single-crtc-stealing: * shard-bmg: PASS -> SKIP (Intel XE#1435) * igt at kms_vblank@ts-continuation-dpms-rpm at pipe-d-hdmi-a-3: * shard-bmg: PASS -> DMESG-WARN (Intel XE#1727 / Intel XE#3468) +7 other tests dmesg-warn * igt at kms_vrr@cmrr at pipe-a-edp-1: * shard-lnl: PASS -> FAIL (Intel XE#2159) +1 other test fail * igt at kms_vrr@flip-suspend: * shard-bmg: NOTRUN -> SKIP (Intel XE#1499) * igt at kms_writeback@writeback-check-output: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756) * igt at xe_compute@ccs-mode-compute-kernel: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727) * igt at xe_compute_preempt@compute-preempt-many: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1280 / Intel XE#455) +1 other test skip * igt at xe_eudebug_online@debugger-reopen: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +3 other tests skip * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: * shard-bmg: NOTRUN -> SKIP (Intel XE#2905) +1 other test skip * igt at xe_evict@evict-beng-small: * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +2 other tests skip * igt at xe_evict@evict-beng-threads-large: * shard-bmg: PASS -> FAIL (Intel XE#1000) * igt at xe_evict@evict-large-multi-vm: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1473 / Intel XE#1727) * igt at xe_evict@evict-large-multi-vm-cm: * shard-bmg: NOTRUN -> FAIL (Intel XE#2364) * igt at xe_evict@evict-threads-large-multi-vm: * shard-bmg: PASS -> DMESG-WARN (Intel XE#1473 / Intel XE#3468) +1 other test dmesg-warn * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +1 other test skip * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +11 other tests skip * igt at xe_exec_sip_eudebug@breakpoint-writesip: * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +1 other test skip * igt at xe_exec_sip_eudebug@wait-writesip-nodebug at drm_xe_engine_class_render0: * shard-bmg: PASS -> DMESG-WARN (Intel XE#3468) +76 other tests dmesg-warn * igt at xe_fault_injection@inject-fault-probe-function-xe_device_create: * shard-bmg: PASS -> DMESG-WARN (Intel XE#3467) * igt at xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: * shard-bmg: PASS -> DMESG-WARN (Intel XE#3343 / Intel XE#3468) * igt at xe_fault_injection@inject-fault-probe-function-xe_sriov_init: * shard-bmg: PASS -> DMESG-WARN (Intel XE#3467 / Intel XE#3468) +1 other test dmesg-warn * igt at xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: * shard-bmg: PASS -> DMESG-WARN (Intel XE#3343) * igt at xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#3467) +1 other test dmesg-warn * shard-bmg: NOTRUN -> DMESG-WARN (Intel XE#3467 / Intel XE#3468) * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#3467) * igt at xe_live_ktest@xe_bo at xe_bo_shrink_kunit: * shard-bmg: PASS -> INCOMPLETE (Intel XE#2998) +1 other test incomplete * igt at xe_live_ktest@xe_mocs: * shard-bmg: PASS -> SKIP (Intel XE#1192) * igt at xe_mmap@small-bar: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#512) * igt at xe_oa@create-destroy-userspace-config: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +3 other tests skip * igt at xe_pm@d3cold-basic: * shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) * igt at xe_pm@s2idle-basic: * shard-dg2-set2: PASS -> DMESG-FAIL (Intel XE#1727 / Intel XE#3468) +1 other test dmesg-fail * igt at xe_pm@s2idle-basic-exec: * shard-bmg: PASS -> DMESG-WARN (Intel XE#1616 / Intel XE#1727 / Intel XE#3468) * igt at xe_pm@s2idle-d3cold-basic-exec: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) * igt at xe_pm@s2idle-d3hot-basic-exec: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358 / Intel XE#3468) * igt at xe_pm@s3-basic-exec: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1727 / Intel XE#3468 / Intel XE#569) +1 other test dmesg-warn * igt at xe_pm@s3-d3hot-basic-exec: * shard-bmg: PASS -> DMESG-WARN (Intel XE#1727 / Intel XE#3468 / Intel XE#569) * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#3468 / Intel XE#569) * igt at xe_pm@s3-vm-bind-userptr: * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#1727 / Intel XE#3468 / Intel XE#569) * igt at xe_pm@s4-vm-bind-unbind-all: * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#1727 / Intel XE#2280 / Intel XE#3468) * igt at xe_pm_residency@toggle-gt-c6: * shard-lnl: PASS -> FAIL (Intel XE#958) * igt at xe_query@multigpu-query-topology-l3-bank-mask: * shard-bmg: NOTRUN -> SKIP (Intel XE#944) * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) Possible fixes * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: * shard-lnl: FAIL (Intel XE#911) -> PASS +3 other tests pass * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1: * shard-lnl: FAIL (Intel XE#1426) -> PASS +1 other test pass * igt at kms_big_fb@4-tiled-64bpp-rotate-0: * shard-bmg: DMESG-FAIL (Intel XE#3468 / Intel XE#877) -> PASS * igt at kms_big_fb@x-tiled-16bpp-rotate-180: * shard-dg2-set2: DMESG-WARN (Intel XE#1727) -> PASS +8 other tests pass * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: * shard-dg2-set2: INCOMPLETE (Intel XE#3468) -> PASS +1 other test pass * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6: * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#3113) -> PASS * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#3226) -> PASS * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: * shard-bmg: SKIP (Intel XE#2291) -> PASS +2 other tests pass * igt at kms_cursor_legacy@torture-bo: * shard-lnl: INCOMPLETE (Intel XE#3226) -> PASS * igt at kms_cursor_legacy@torture-bo at pipe-c: * shard-lnl: INCOMPLETE -> PASS * igt at kms_display_modes@extended-mode-basic: * shard-bmg: DMESG-WARN (Intel XE#877) -> PASS +1 other test pass * igt at kms_flip@2x-blocking-wf_vblank at ab-hdmi-a6-dp4: * shard-dg2-set2: FAIL -> PASS +1 other test pass * igt at kms_flip@2x-dpms-vs-vblank-race: * shard-bmg: INCOMPLETE (Intel XE#2635) -> PASS * igt at kms_flip@2x-dpms-vs-vblank-race at cd-dp2-hdmi-a3: * shard-bmg: INCOMPLETE (Intel XE#2635 / Intel XE#3468) -> PASS * igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +1 other test pass * igt at kms_flip@2x-flip-vs-panning-interruptible at cd-dp2-hdmi-a3: * shard-bmg: DMESG-WARN (Intel XE#3468) -> PASS +165 other tests pass * igt at kms_flip@2x-plain-flip-ts-check-interruptible: * shard-bmg: SKIP (Intel XE#2316) -> PASS +3 other tests pass * igt at kms_flip@flip-vs-absolute-wf_vblank at a-dp2: * shard-bmg: DMESG-FAIL (Intel XE#3468) -> PASS +14 other tests pass * igt at kms_flip@flip-vs-expired-vblank: * shard-bmg: FAIL (Intel XE#2882) -> PASS * igt at kms_flip@flip-vs-expired-vblank at d-dp2: * shard-bmg: FAIL (Intel XE#3321) -> PASS +1 other test pass * igt at kms_flip@flip-vs-suspend at a-hdmi-a6: * shard-dg2-set2: DMESG-WARN (Intel XE#3468) -> PASS +7 other tests pass * igt at kms_flip@flip-vs-suspend at b-hdmi-a6: * shard-dg2-set2: DMESG-FAIL (Intel XE#3468) -> PASS +1 other test pass * igt at kms_flip@flip-vs-suspend at c-dp2: * shard-bmg: DMESG-FAIL (Intel XE#1727 / Intel XE#3468) -> PASS +12 other tests pass * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling at pipe-a-valid-mode: * shard-bmg: INCOMPLETE (Intel XE#1727 / Intel XE#3468) -> PASS +2 other tests pass * igt at kms_flip_tiling@flip-change-tiling at pipe-b-hdmi-a-3-x-to-4: * shard-bmg: DMESG-WARN -> PASS * igt at kms_hdr@invalid-hdr: * shard-dg2-set2: SKIP (Intel XE#455) -> PASS * igt at kms_plane@plane-panning-bottom-right-suspend: * shard-dg2-set2: INCOMPLETE (Intel XE#1035 / Intel XE#1727 / Intel XE#3468) -> PASS +1 other test pass * igt at kms_plane_lowres@tiling-none at pipe-a-hdmi-a-6: * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#3468) -> PASS +1 other test pass * igt at kms_plane_scaling@2x-scaler-multi-pipe: * shard-bmg: SKIP (Intel XE#2571) -> PASS * igt at kms_plane_scaling@plane-upscale-20x20-with-pixel-format at pipe-a: * shard-bmg: DMESG-WARN (Intel XE#2705 / Intel XE#3468) -> PASS +1 other test pass * igt at kms_pm_rpm@cursor-dpms: * shard-dg2-set2: DMESG-WARN (Intel XE#1727 / Intel XE#3468) -> PASS +8 other tests pass * igt at kms_pm_rpm@dpms-non-lpsp: * shard-dg2-set2: ABORT (Intel XE#3468) -> PASS * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-bmg: DMESG-WARN (Intel XE#1727 / Intel XE#3468) -> PASS +3 other tests pass * igt at kms_rmfb@rmfb-ioctl at pipe-a-hdmi-a-6: * shard-dg2-set2: INCOMPLETE (Intel XE#1727) -> PASS +2 other tests pass * igt at xe_ccs@suspend-resume: * shard-bmg: INCOMPLETE (Intel XE#1727 / Intel XE#2771 / Intel XE#3468) -> PASS * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: * shard-dg2-set2: DMESG-FAIL (Intel XE#1727 / Intel XE#3468) -> PASS +12 other tests pass * igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-system-vram01: * shard-bmg: INCOMPLETE (Intel XE#2771) -> PASS * igt at xe_evict@evict-large-external-cm: * shard-bmg: DMESG-WARN (Intel XE#1473 / Intel XE#3468) -> PASS * igt at xe_exec_balancer@twice-parallel-userptr-invalidate: * shard-dg2-set2: DMESG-FAIL -> PASS * igt at xe_exec_compute_mode@twice-userptr-free: * shard-bmg: DMESG-WARN (Intel XE#1727) -> PASS * igt at xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: * shard-bmg: DMESG-WARN (Intel XE#3467 / Intel XE#3468) -> PASS +2 other tests pass * igt at xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: * shard-bmg: DMESG-WARN (Intel XE#3467) -> PASS +1 other test pass * igt at xe_fault_injection@vm-create-fail-xe_vm_create_scratch: * shard-dg2-set2: DMESG-WARN (Intel XE#3467) -> PASS +1 other test pass * igt at xe_pm@s3-vm-bind-userptr: * shard-bmg: DMESG-WARN (Intel XE#1727 / Intel XE#3468 / Intel XE#569) -> PASS * igt at xe_pm@s4-multiple-execs: * shard-lnl: ABORT (Intel XE#1358 / Intel XE#1607 / Intel XE#1794) -> PASS * igt at xe_vm@munmap-style-unbind-many-either-side-partial-hammer: * shard-dg2-set2: ABORT -> PASS Warnings * igt at core_hotunplug@unbind-rebind: * shard-bmg: DMESG-WARN (Intel XE#3468 / Intel XE#3783) -> DMESG-WARN (Intel XE#3468) * igt at kms_content_protection@atomic: * shard-bmg: SKIP (Intel XE#2341) -> INCOMPLETE (Intel XE#2715 / Intel XE#3468) +1 other test incomplete * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: * shard-bmg: INCOMPLETE (Intel XE#2715 / Intel XE#3468) -> FAIL (Intel XE#1178) +1 other test fail * igt at kms_cursor_edge_walk@256x256-top-edge: * shard-bmg: DMESG-FAIL (Intel XE#3468) -> DMESG-WARN (Intel XE#3468) +1 other test dmesg-warn * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: * shard-bmg: SKIP (Intel XE#2291) -> DMESG-WARN (Intel XE#3468) * igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3: * shard-bmg: FAIL (Intel XE#2882) -> DMESG-WARN (Intel XE#3468) +2 other tests dmesg-warn * igt at kms_flip@2x-flip-vs-suspend-interruptible: * shard-dg2-set2: INCOMPLETE (Intel XE#2049 / Intel XE#2597) -> DMESG-FAIL (Intel XE#1727 / Intel XE#3468) * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a6-dp4: * shard-dg2-set2: INCOMPLETE -> DMESG-FAIL (Intel XE#3468) * igt at kms_flip@2x-wf_vblank-ts-check: * shard-bmg: DMESG-WARN (Intel XE#1727 / Intel XE#3468) -> SKIP (Intel XE#2316) * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +11 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +14 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: * shard-bmg: FAIL (Intel XE#2333) -> DMESG-FAIL (Intel XE#3468) +9 other tests dmesg-fail * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: * shard-bmg: DMESG-FAIL (Intel XE#3468) -> FAIL (Intel XE#2333) +7 other tests fail * igt at kms_frontbuffer_tracking@fbc-2p-rte: * shard-bmg: SKIP (Intel XE#2312) -> FAIL (Intel XE#2333) +3 other tests fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2312) +7 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: * shard-bmg: DMESG-FAIL (Intel XE#3468) -> SKIP (Intel XE#2312) * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: * shard-bmg: SKIP (Intel XE#2312) -> DMESG-FAIL (Intel XE#3468) +3 other tests dmesg-fail * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +14 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +15 other tests skip * igt at kms_pm_rpm@modeset-non-lpsp: * shard-dg2-set2: DMESG-WARN (Intel XE#3468) -> ABORT (Intel XE#3468) * igt at xe_evict@evict-beng-mixed-many-threads-large: * shard-dg2-set2: INCOMPLETE (Intel XE#1473) -> TIMEOUT (Intel XE#1473) * shard-bmg: INCOMPLETE (Intel XE#1473 / Intel XE#3468) -> TIMEOUT (Intel XE#1473) * igt at xe_evict@evict-beng-mixed-many-threads-small: * shard-dg2-set2: TIMEOUT (Intel XE#1473 / Intel XE#402) -> INCOMPLETE (Intel XE#1473 / Intel XE#402) * shard-bmg: TIMEOUT (Intel XE#1473) -> INCOMPLETE (Intel XE#1473) * igt at xe_evict@evict-mixed-threads-large: * shard-bmg: INCOMPLETE (Intel XE#1473) -> TIMEOUT (Intel XE#1473 / Intel XE#2472) * igt at xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: * shard-bmg: DMESG-WARN (Intel XE#3343 / Intel XE#3468) -> DMESG-WARN (Intel XE#3343) * igt at xe_live_ktest@xe_mocs: * shard-dg2-set2: FAIL (Intel XE#1999) -> SKIP (Intel XE#1192) * igt at xe_module_load@many-reload: * shard-dg2-set2: DMESG-WARN (Intel XE#1727) -> DMESG-WARN (Intel XE#3467) * igt at xe_pm@d3cold-mmap-system: * shard-dg2-set2: INCOMPLETE (Intel XE#1727) -> SKIP (Intel XE#2284 / Intel XE#366) * igt at xe_pm@s3-vm-bind-unbind-all: * shard-dg2-set2: DMESG-WARN (Intel XE#1727 / Intel XE#3468 / Intel XE#569) -> DMESG-FAIL (Intel XE#1727 / Intel XE#3468) * shard-bmg: DMESG-WARN (Intel XE#1727 / Intel XE#3468 / Intel XE#569) -> DMESG-WARN (Intel XE#3468 / Intel XE#569) Build changes * IGT: IGT_8156 -> IGTPW_12314 * Linux: xe-2370-a752f9b5366a071e41f973b51842b6af5817f2a2 -> xe-2372-c111f42f663a758bed87de37c0383ea6bb69b609 IGTPW_12314: 286e2c20252aecafe4310cb2dba45852e3975a21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8156: edf352a96646c8d793f0c1eb11795112f9bde725 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2370-a752f9b5366a071e41f973b51842b6af5817f2a2: a752f9b5366a071e41f973b51842b6af5817f2a2 xe-2372-c111f42f663a758bed87de37c0383ea6bb69b609: c111f42f663a758bed87de37c0383ea6bb69b609 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jordan.l.justen at intel.com Fri Jan 3 06:11:49 2025 From: jordan.l.justen at intel.com (Jordan Justen) Date: Thu, 02 Jan 2025 22:11:49 -0800 Subject: [PATCH] tests/intel/*_query: Add new hwconfig table entry In-Reply-To: <20240910011238.254204-1-julia.filipchuk@intel.com> References: <20240910011238.254204-1-julia.filipchuk@intel.com> Message-ID: <173588470995.6880.3615586741322727599@jljusten-skl> Where can I find the documentation for this? -Jordan On 2024-09-09 18:12:38, Julia Filipchuk wrote: > Two new entries added to the hardware config table. Updated enum and > tests accordingly. > > Signed-off-by: Julia Filipchuk > --- > lib/intel_hwconfig_types.h | 2 ++ > tests/intel/i915_query.c | 2 ++ > tests/intel/xe_query.c | 4 +++- > 3 files changed, 7 insertions(+), 1 deletion(-) > > diff --git a/lib/intel_hwconfig_types.h b/lib/intel_hwconfig_types.h > index 0e6ce5b17..b5d9f1c9e 100644 > --- a/lib/intel_hwconfig_types.h > +++ b/lib/intel_hwconfig_types.h > @@ -97,6 +97,8 @@ enum intel_hwconfig { > INTEL_HWCONFIG_MIN_MESH_URB_ENTRIES, /* 79 */ > INTEL_HWCONFIG_MAX_MESH_URB_ENTRIES, /* 80 */ > INTEL_HWCONFIG_MAX_GSC, /* 81 */ > + INTEL_HWCONFIG_SYNC_NUM_RT_STACKS_PER_DSS, /* 82 */ > + INTEL_HWCONFIG_NUM_XECU, /* 83 */ > __INTEL_HWCONFIG_KEY_LIMIT > }; > > diff --git a/tests/intel/i915_query.c b/tests/intel/i915_query.c > index 54dbb193a..df7e46a63 100644 > --- a/tests/intel/i915_query.c > +++ b/tests/intel/i915_query.c > @@ -1340,6 +1340,8 @@ static const char * const hwconfig_keys[] = { > [INTEL_HWCONFIG_MIN_MESH_URB_ENTRIES] = "Min Mesh URB Entries", > [INTEL_HWCONFIG_MAX_MESH_URB_ENTRIES] = "Max Mesh URB Entries", > [INTEL_HWCONFIG_MAX_GSC] = "MaxGSC", > + [INTEL_HWCONFIG_SYNC_NUM_RT_STACKS_PER_DSS] = "Sync Num RT Stacks Per DSS", > + [INTEL_HWCONFIG_NUM_XECU] = "Num of XeCU", > }; > > static const char * const hwconfig_memtypes[] = { > diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c > index ddb2e76e5..3a0a83135 100644 > --- a/tests/intel/xe_query.c > +++ b/tests/intel/xe_query.c > @@ -50,7 +50,7 @@ void dump_hex_debug(void *buffer, int len) > /* Please reflect intel_hwconfig_types.h changes below > * static_asserti_value + get_hwconfig_name > * Thanks :-) */ > -static_assert(INTEL_HWCONFIG_MAX_GSC + 1 == __INTEL_HWCONFIG_KEY_LIMIT, ""); > +static_assert(INTEL_HWCONFIG_NUM_XECU + 1 == __INTEL_HWCONFIG_KEY_LIMIT, ""); > > #define CASE_STRINGIFY(A) case INTEL_HWCONFIG_##A: return #A; > const char* get_hwconfig_name(int param) > @@ -137,6 +137,8 @@ const char* get_hwconfig_name(int param) > CASE_STRINGIFY(MIN_MESH_URB_ENTRIES); > CASE_STRINGIFY(MAX_MESH_URB_ENTRIES); > CASE_STRINGIFY(MAX_GSC); > + CASE_STRINGIFY(SYNC_NUM_RT_STACKS_PER_DSS); > + CASE_STRINGIFY(NUM_XECU); > } > igt_assert_lt(param, __INTEL_HWCONFIG_KEY_LIMIT); > igt_assert(!"Missing config table enum"); > -- > 2.45.2 > From soham.purkait at intel.com Fri Jan 3 06:53:04 2025 From: soham.purkait at intel.com (Soham Purkait) Date: Fri, 3 Jan 2025 12:23:04 +0530 Subject: [PATCH i-g-t] Add single engine busyness stats in GPUTOP Message-ID: <20250103065304.45781-1-soham.purkait@intel.com> Add single engine busyness support in GPUTOP. This will use the PMU interface to display the busyness of each engine instances. ENGINES BUSY Render/3D/0 | 96.5% ????????????????????????????????????????| Blitter/0 | 91.6% ????????????????????????????????????? | Video/0 | 56.2% ??????????????????????????? | VideoEnhance/0| 97.7% ????????????????????????????????????????| Compute/0 | 48.5% ???????????????????????? | --- tools/gputop.c | 586 +++++++++++++++++++++++++++++++++++++++++++++- tools/meson.build | 2 +- 2 files changed, 585 insertions(+), 3 deletions(-) diff --git a/tools/gputop.c b/tools/gputop.c index 43b01f566..dccd38d66 100644 --- a/tools/gputop.c +++ b/tools/gputop.c @@ -2,7 +2,6 @@ /* * Copyright ? 2023 Intel Corporation */ - #include #include #include @@ -31,6 +30,88 @@ #include "igt_drm_fdinfo.h" #include "igt_profiling.h" #include "drmtest.h" +#include "xe/xe_query.h" +#include "igt_perf.h" +#include "igt_device_scan.h" + +struct pmu_pair { + uint64_t cur; + uint64_t prev; +}; + +struct pmu_counter { + uint64_t type; + uint64_t config; + unsigned int idx; + struct pmu_pair val; + //double scale; + //const char *units; + bool present; +}; + +// struct engine_class { +// unsigned int engine_class; +// const char *name; +// unsigned int num_engines; +// }; + +struct engine { + const char *name; + char *display_name; + char *short_name; + + // unsigned int class; + // unsigned int instance; + struct drm_xe_engine_class_instance xe_engine; + + unsigned int num_counters; + + struct pmu_counter busy; + struct pmu_counter total; + //struct pmu_counter wait; + //struct pmu_counter sema; +}; + +#define MAX_GTS 4 +struct engines { + unsigned int num_engines; + unsigned int num_classes; + //struct engine_class *class; + unsigned int num_counters; + DIR *root; + int fd; + struct pmu_pair ts; + + // int rapl_fd; + // struct pmu_counter r_gpu, r_pkg; + // unsigned int num_rapl; + + // int imc_fd; + // struct pmu_counter imc_reads; + // struct pmu_counter imc_writes; + // unsigned int num_imc; + + // struct pmu_counter freq_req; + // struct pmu_counter freq_req_gt[MAX_GTS]; + // struct pmu_counter freq_act; + // struct pmu_counter freq_act_gt[MAX_GTS]; + // struct pmu_counter irq; + // struct pmu_counter rc6; + // struct pmu_counter rc6_gt[MAX_GTS]; + + bool discrete; + char *device; + + int num_gts; + + /* Do not edit below this line. + * This structure is reallocated every time a new engine is + * found and size is increased by sizeof (engine). + */ + + struct engine engine; + +}; enum utilization_type { UTILIZATION_TYPE_ENGINE_TIME, @@ -39,9 +120,39 @@ enum utilization_type { static const char *bars[] = { " ", "?", "?", "?", "?", "?", "?", "?", "?" }; +static const char *engine_event[] = {"rcs", "bcs", "vcs", "vecs", "ccs"}; + +#define engine_ptr(engines, n) (&engines->engine + (n)) + +#define is_igpu(x) (strcmp(x, "xe") == 0) + +#define IGPU_PCI "0000:00:02.0" +#define is_igpu_pci(x) (strcmp(x, IGPU_PCI) == 0) + #define ANSI_HEADER "\033[7m" #define ANSI_RESET "\033[0m" +#define CLEAN_UP() \ + do { \ + free(engines); \ + return NULL; \ + } while (0) + +#define _open_pmu(type, cnt, pmu, fd) \ +({ \ + int fd__; \ +\ + fd__ = igt_perf_open_group((type), (pmu)->config, (fd)); \ + if (fd__ >= 0) { \ + if ((fd) == -1) \ + (fd) = fd__; \ + (pmu)->present = true; \ + (pmu)->idx = (cnt)++; \ + } \ +\ + fd__; \ +}) + static void n_spaces(const unsigned int n) { unsigned int i; @@ -403,6 +514,414 @@ static void sigint_handler(int sig) stop_top = true; } +static double pmu_calc_total(struct pmu_pair *p) +{ + double v; + v = (p->cur - p->prev)/1e9; + return v; +} + +static double pmu_calc(struct pmu_pair *p, double total_tick) +{ + double bz = (p->cur - p->prev)/1e9; + double total; + total = (bz*100)/total_tick; + return total; +} + +static int +print_engines_header(struct engines *engines, + int lines, int con_w, int con_h) +{ + const char *a; + for (unsigned int i = 0; + i < engines->num_engines && lines < con_h; + i++) { + struct engine *engine = engine_ptr(engines, i); + + if (!engine->num_counters) + continue; + + + a = " ENGINES BUSY "; // + + printf("\033[7m%s%*s\033[0m\n", + a, (int)(con_w - strlen(a)), " "); + + lines++; + + + break; + } + + return lines; +} + +static int +print_engine(struct engines *engines, unsigned int i, + int lines, int con_w, int con_h) +{ + struct engine *engine = engine_ptr(engines, i); + double total_tick = pmu_calc_total(&(engine->total.val)); + double percentage = pmu_calc(&(engine->busy.val), total_tick); + + printf("%*s",(int)(strlen(" ENGINES")),engine->display_name); + //printf(" %5.1f", percentage); + print_percentage_bar(percentage, con_w - strlen(" ENGINES")); + printf("\n"); + + return ++lines; + +} + +static int +print_engines_footer(struct engines *engines, + int lines, int con_w, int con_h) +{ + + if (lines++ < con_h) + printf("\n"); + + return lines; +} + +static int +print_engines(struct engines *engines, int lines, int w, int h) +{ + struct engines *show; + + show = engines; + + lines = print_engines_header(show, lines, w, h); + + for (unsigned int i = 0; i < show->num_engines && lines < h; i++) + lines = print_engine(show, i, lines, w, h); + + lines = print_engines_footer(show, lines, w, h); + + return lines; +} + +static uint64_t +get_pmu_config(int dirfd, const char *name, const char *counter, const unsigned int gt) +{ + char buf[128], *p; + int fd, ret; + + ret = snprintf(buf, sizeof(buf), "%s%s%u", name, counter, gt); + if (ret < 0 || ret == sizeof(buf)) + return -1; + + fd = openat(dirfd, buf, O_RDONLY); + if (fd < 0) + return -1; + + ret = read(fd, buf, sizeof(buf)); + close(fd); + if (ret <= 0) + return -1; + + p = strchr(buf, '0'); + if (!p) + return -1; + + return strtoul(p, NULL, 0); +} + + + +static int engine_cmp(const void *__a, const void *__b) +{ + const struct engine *a = (struct engine *)__a; + const struct engine *b = (struct engine *)__b; + + if (a->xe_engine.engine_class != b->xe_engine.engine_class) + return a->xe_engine.engine_class - b->xe_engine.engine_class; + else + return a->xe_engine.engine_instance - b->xe_engine.engine_instance; +} + +static void free_engines(struct engines *engines) +{ + + unsigned int i; + + if (!engines) + return; + + + + for (i = 0; i < engines->num_engines; i++) { + struct engine *engine = engine_ptr(engines, i); + + free((char *)engine->name); + free((char *)engine->short_name); + free((char *)engine->display_name); + } + + closedir(engines->root); + free(engines); +} + +static const char *class_display_name(unsigned int class) +{ + switch (class) { + case DRM_XE_ENGINE_CLASS_RENDER: + return "Render/3D"; + case DRM_XE_ENGINE_CLASS_COPY: + return "Blitter"; + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: + return "Video"; + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: + return "VideoEnhance"; + case DRM_XE_ENGINE_CLASS_COMPUTE: + return "Compute"; + default: + return "[unknown]"; + } +} + +static const char *class_short_name(unsigned int class) +{ + switch (class) { + case DRM_XE_ENGINE_CLASS_RENDER: + return "RCS"; + case DRM_XE_ENGINE_CLASS_COPY: + return "BCS"; + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: + return "VCS"; + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: + return "VECS"; + case DRM_XE_ENGINE_CLASS_COMPUTE: + return "CCS"; + default: + return "UNKN"; + } +} + + +static struct engines *discover_engines(char *device, struct igt_device_card *card) +{ + char sysfs_root[PATH_MAX]; + struct engines *engines; + //struct dirent *dent; + int ret = 0; + DIR *d; + struct drm_xe_engine_class_instance *hwe; + const char *busy_end = "-busy-ticks-gt"; + const char *total_end = "-total-ticks-gt"; + int card_fd; + + if (!card || !strlen(card->card) || !strlen(card->render)) + { + return NULL; + } + + if (strlen(card->card)) + { + card_fd = igt_open_card(card); //open(card->card, O_RDWR); + } + else if (strlen(card->render)) + { + card_fd = igt_open_render(card); + } + else + { + fprintf( stderr, "Failed to detect device!\n" ); + CLEAN_UP() ; + } + + xe_device_get(card_fd); + + + snprintf(sysfs_root, sizeof(sysfs_root), + "/sys/devices/%s/events", device); + + engines = malloc(sizeof(struct engines)); + if (!engines) + return NULL; + + memset(engines, 0, sizeof(*engines)); + + engines->num_engines = 0; + engines->device = device; + engines->discrete = !is_igpu(device); + + xe_for_each_engine(card_fd, hwe) + { + struct engine *engine = engine_ptr(engines, engines->num_engines); + engine->xe_engine = *hwe; + engines->num_engines++; + engines = realloc(engines, sizeof(struct engines) + + engines->num_engines * sizeof(struct engine)); + if (!engines) { + ret = errno; + break; + } + } + + d = opendir(sysfs_root); + if (!d) + CLEAN_UP(); + + for (unsigned int i = 0; i < engines->num_engines; i++) + { + struct engine *engine = engine_ptr(engines, i); + asprintf((char**)&(engine->name),"%s%u",engine_event[engine->xe_engine.engine_class],engine->xe_engine.engine_instance); + + memset(&(engine->busy), 0, sizeof(struct pmu_counter)); + memset(&(engine->total), 0, sizeof(struct pmu_counter)); + + engine->busy.config = get_pmu_config(dirfd(d), engine->name, busy_end, engine->xe_engine.gt_id); + engine->total.config = get_pmu_config(dirfd(d), engine->name, total_end, engine->xe_engine.gt_id); + + if (engine->busy.config == -1 || engine->total.config == -1) + { + ret = ENOENT; + break; + } + + ret = asprintf(&engine->display_name, "%s/%u", + class_display_name(engine->xe_engine.engine_class), + engine->xe_engine.engine_instance); + + if (ret <= 0) { + ret = errno; + break; + } + + ret = asprintf(&engine->short_name, "%s/%u", + class_short_name(engine->xe_engine.engine_class), + engine->xe_engine.engine_instance); + + if (ret <= 0) { + ret = errno; + break; + } + + } + + + if (!ret) { + errno = ret; + CLEAN_UP(); + } + + qsort(engine_ptr(engines, 0), engines->num_engines, + sizeof(struct engine), engine_cmp); + + engines->root = d; + + return engines; +} + +static int pmu_init(struct engines *engines) +{ + unsigned int i; + int fd; + struct engine *engine; + uint64_t type = igt_perf_type_id(engines->device); + + engines->fd = -1; + engines->num_counters = 0; + + engine = engine_ptr(engines, 0); + fd = _open_pmu(type, engines->num_counters, &(engine->busy), engines->fd); + if (fd < 0) + return -1; + fd = _open_pmu(type, engines->num_counters, &(engine->total), engines->fd); + if (fd < 0) + return -1; + + for (i = 1; i < engines->num_engines; i++) + { + engine = engine_ptr(engines, i); + fd = _open_pmu(type, engines->num_counters, &(engine->busy), engines->fd); + if (fd < 0) + return -1; + fd = _open_pmu(type, engines->num_counters, &(engine->total), engines->fd); + if (fd < 0) + return -1; + + } + + return 0; +} + +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val) +{ + uint64_t buf[2 + num]; + unsigned int i; + ssize_t len; + + memset(buf, 0, sizeof(buf)); + + len = read(fd, buf, sizeof(buf)); + assert(len == sizeof(buf)); + + for (i = 0; i < num; i++) + val[i] = buf[2 + i]; + + return buf[1]; +} + +static void __update_sample(struct pmu_counter *counter, uint64_t val) +{ + counter->val.prev = counter->val.cur; + counter->val.cur = val; +} + +static void update_sample(struct pmu_counter *counter, uint64_t *val) +{ + if (counter->present) + __update_sample(counter, val[counter->idx]); +} + +static void pmu_sample(struct engines *engines) +{ + const int num_val = engines->num_counters; + uint64_t val[2 + num_val]; + unsigned int i; + + engines->ts.prev = engines->ts.cur; + engines->ts.cur = pmu_read_multi(engines->fd, num_val, val); + + for (i = 0; i < engines->num_engines; i++) { + struct engine *engine = engine_ptr(engines, i); + + update_sample(&(engine->busy), val); + update_sample(&(engine->total), val); + } + +} + +/* tr_pmu_name() + * + * Transliterate pci_slot_id to sysfs device name entry for discrete GPU. + * Discrete GPU PCI ID ("xxxx:yy:zz.z") device = "xe_xxxx_yy_zz.z". + */ +static char *tr_pmu_name(struct igt_device_card *card) +{ + int ret; + const int bufsize = 16; + char *buf, *device = NULL; + + assert(card->pci_slot_name[0]); + + device = malloc(bufsize); + assert(device); + + ret = snprintf(device, bufsize, "xe_%s", card->pci_slot_name); + assert(ret == (bufsize-1)); + + buf = device; + for (; *buf; buf++) + if (*buf == ':') + *buf = '_'; + + return device; +} + int main(int argc, char **argv) { struct gputop_args args; @@ -412,6 +931,9 @@ int main(int argc, char **argv) int con_w = -1, con_h = -1; int ret; long n; + struct igt_device_card card; + char *pmu_device ; + struct engines *engines; ret = parse_args(argc, argv, &args); if (ret < 0) @@ -422,6 +944,62 @@ int main(int argc, char **argv) n = args.n_iter; period_us = args.delay_usec; + igt_devices_scan(false); + + //Yet to implement the device filter + + ret = igt_device_find_first_xe_discrete_card(&card); + if (!ret) + ret = igt_device_find_xe_integrated_card(&card); + if (!ret) + fprintf(stderr, "No discrete/integrated xe devices found\n"); + + if (!ret) { + ret = EXIT_FAILURE; + igt_devices_free(); + return ret; + } + + if (card.pci_slot_name[0] ) //&& !is_igpu_pci(card.pci_slot_name) + pmu_device = tr_pmu_name(&card); + else + pmu_device = strdup("xe"); + + + engines = discover_engines(pmu_device, &card); + + if (!engines) { + fprintf(stderr, + "Failed to discover engines! (%s)\n", + strerror(errno)); + return EXIT_FAILURE; + } + + ret = pmu_init(engines); + + if (ret) { + fprintf(stderr, + "Failed to initialize PMU! (%s)\n", strerror(errno)); + if (errno == EACCES && geteuid()) + fprintf(stderr, +"\n" +"When running as a normal user CAP_PERFMON is required to access performance\n" +"monitoring. See \"man 7 capabilities\", \"man 8 setcap\", or contact your\n" +"distribution vendor for assistance.\n" +"\n" +"More information can be found at 'Perf events and tool security' document:\n" +"https://www.kernel.org/doc/html/latest/admin-guide/perf-security.html\n"); + + free_engines(engines); + free(pmu_device); + igt_devices_free(); + return EXIT_FAILURE; + } + + ret = EXIT_SUCCESS; + + pmu_sample(engines); + clients = igt_drm_clients_init(NULL); if (!clients) exit(1); @@ -450,6 +1028,10 @@ int main(int argc, char **argv) update_console_size(&con_w, &con_h); clrscr(); + pmu_sample(engines); + lines = print_engines(engines, lines, con_w, con_h); + + if (!clients->num_clients) { const char *msg = " (No GPU clients yet. Start workload to see stats)"; @@ -488,4 +1070,4 @@ int main(int argc, char **argv) } return 0; -} +} \ No newline at end of file diff --git a/tools/meson.build b/tools/meson.build index 511aec69e..8a3290d39 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -71,7 +71,7 @@ endif executable('gputop', 'gputop.c', install : true, install_rpath : bindir_rpathdir, - dependencies : [lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math]) + dependencies : [igt_deps,lib_igt_perf,lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math]) intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ] executable('intel_l3_parity', sources : intel_l3_parity_src, -- 2.34.1 From jeevan.b at intel.com Fri Jan 3 08:08:41 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Fri, 3 Jan 2025 08:08:41 +0000 Subject: [PATCH i-g-t] tests/intel/kms_dirtyfb: Add logs to skips In-Reply-To: <20250102131247.258388-1-pranay.samala@intel.com> References: <20250102131247.258388-1-pranay.samala@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Pranay > Samala > Sent: Thursday, January 2, 2025 6:43 PM > To: igt-dev at lists.freedesktop.org > Cc: B S, Karthik ; Sharma, Swati2 > ; Lattannavar, Sameer > ; Samala, Pranay > Subject: [PATCH i-g-t] tests/intel/kms_dirtyfb: Add logs to skips > > Having some logs for test failures & skips would make debugging much easier. > > Signed-off-by: Pranay Samala > --- > tests/intel/kms_dirtyfb.c | 37 ++++++++++++++++++++++++++++--------- > 1 file changed, 28 insertions(+), 9 deletions(-) > > diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c index > 35df9be3b..19dd283d5 100644 > --- a/tests/intel/kms_dirtyfb.c > +++ b/tests/intel/kms_dirtyfb.c > @@ -102,21 +102,40 @@ static bool check_support(data_t *data) > case FEATURE_NONE: > return true; > case FEATURE_FBC: > - if (!intel_fbc_supported_on_chipset(data->drm_fd, data- > >pipe)) > + if (!intel_fbc_supported_on_chipset(data->drm_fd, data- > >pipe)) { > + igt_info("FBC is not supported on this chipset\n"); > return false; > + } > + > + if (!intel_fbc_plane_size_supported(data->drm_fd, > + data->mode->hdisplay, > + data->mode->vdisplay)) { > + igt_info("Plane size not supported as per FBC size > restrictions\n"); > + return false; > + } > + return true; > > - return intel_fbc_plane_size_supported(data->drm_fd, > - data->mode->hdisplay, > - data->mode->vdisplay); > case FEATURE_PSR: > if (data->output->config.connector->connector_type != > - DRM_MODE_CONNECTOR_eDP) > + DRM_MODE_CONNECTOR_eDP) { > + igt_info("Output is not an eDP\n"); > + return false; > + } > + if (!psr_sink_support(data->drm_fd, data->debugfs_fd, > + PSR_MODE_1, NULL)) { > + igt_info("Output doesn't supports PSR\n"); Correction => Output doesn't support PSR > return false; > - return psr_sink_support(data->drm_fd, data->debugfs_fd, > - PSR_MODE_1, NULL); > + } > + return true; > + > case FEATURE_DRRS: > - return intel_is_drrs_supported(data->drm_fd, data->pipe) && > - intel_output_has_drrs(data->drm_fd, data->output); > + if (!(intel_is_drrs_supported(data->drm_fd, data->pipe) && > + intel_output_has_drrs(data->drm_fd, data->output))) { > + igt_info("Output doesn't supports DRRS\n"); Same goes here. > + return false; > + } > + return true; > + > case FEATURE_DEFAULT: > return true; > default: > -- > 2.34.1 Apart from these LGTM. From jesse.zhang at amd.com Fri Jan 3 08:17:33 2025 From: jesse.zhang at amd.com (Jesse.zhang@amd.com) Date: Fri, 3 Jan 2025 16:17:33 +0800 Subject: [PATCH i-g-t v2 2/3] lib/amdgpu: Extract PCI device address from file descriptor In-Reply-To: <20250103081734.2338675-1-jesse.zhang@amd.com> References: <20250103081734.2338675-1-jesse.zhang@amd.com> Message-ID: <20250103081734.2338675-2-jesse.zhang@amd.com> From: "Jesse.zhang at amd.com" Get the pci domain, device and function number from the amdgpu device's fd. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher Suggest-by: Vitaly Prosyak Signed-off-by: Jesse Zhang --- lib/amdgpu/amd_ip_blocks.c | 64 ++++++++++++++++++++++++++++++++++++++ lib/amdgpu/amd_ip_blocks.h | 17 ++++++++++ 2 files changed, 81 insertions(+) diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c index cc4163bfc..05e6e2622 100644 --- a/lib/amdgpu/amd_ip_blocks.c +++ b/lib/amdgpu/amd_ip_blocks.c @@ -1047,3 +1047,67 @@ is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type) return enable; } + +/** + * get_pci_addr_from_fd - Extracts the PCI device address from a file descriptor. + * @fd: The file descriptor to extract the address from. + * @pci: Pointer to a pci_addr struct to store the extracted address. + * + * Returns 0 on success, or a negative error code on failure. + */ +int get_pci_addr_from_fd(int fd, struct pci_addr *pci) +{ + char path[80]; + struct stat st; + char link[20], pci_path[256]; + char *buf; + int len, sysfs; + int ret; + + // Check if the file descriptor is a character device and can be accessed + if (fstat(fd, &st) < 0 || !S_ISCHR(st.st_mode)) + return -1; + + snprintf(path, sizeof(path), "/sys/dev/char/%d:%d", + major(st.st_rdev), minor(st.st_rdev)); + + // Check if the sysfs path exists + if (access(path, F_OK) < 0) + return -1; + + // Open the sysfs directory + sysfs = open(path, O_RDONLY); + if (sysfs < 0) { + perror("open"); + return -1; + } + + // Read the "device" link from the sysfs directory + snprintf(link, sizeof(link), "device"); + len = readlinkat(sysfs, link, pci_path, sizeof(pci_path) - 1); + if (len == -1) { + close(sysfs); + return -ENOENT; + } + close(sysfs); + // Null-terminate the extracted path + pci_path[len] = '\0'; + + // Find the last occurrence of '/' in the extracted path + buf = strrchr(pci_path, '/'); + if (!buf) + return -ENOENT; + + // Extract the PCI device address from the path using sscanf + ret = sscanf(buf, "/%4x:%2x:%2x.%2x", + &pci->domain, &pci->bus, + &pci->device, &pci->function); + + if (ret != 4) { + printf("Unable to extract PCI device address from '%s'\n", buf); + return -ENOENT; + } + + return 0; +} + diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 337ef3c25..dc4d87151 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -8,6 +8,13 @@ #define AMD_IP_BLOCKS_H #include +#include +#include +#include +#include +#include +#include +#include #include "amd_registers.h" #include "amd_family.h" @@ -183,6 +190,13 @@ struct chip_info { amdgpu_device_handle dev; }; +struct pci_addr { + unsigned int domain; + unsigned int bus; + unsigned int device; + unsigned int function; +}; + extern struct amdgpu_ip_blocks_device amdgpu_ips; extern const struct chip_info *g_pChip; int @@ -220,4 +234,7 @@ asic_rings_readness(amdgpu_device_handle device_handle, uint32_t mask, bool arr[ bool is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type); + +int +get_pci_addr_from_fd(int fd, struct pci_addr *pci); #endif -- 2.25.1 From jesse.zhang at amd.com Fri Jan 3 08:17:32 2025 From: jesse.zhang at amd.com (Jesse.zhang@amd.com) Date: Fri, 3 Jan 2025 16:17:32 +0800 Subject: [PATCH i-g-t v2 1/3] lib/amdgpu: enhance wait memory helper Message-ID: <20250103081734.2338675-1-jesse.zhang@amd.com> Test all sdma rings and ensure that all rings can be recovered. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher Signed-off-by: Jesse Zhang --- lib/amdgpu/amd_deadlock_helpers.c | 91 ++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 3 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index 87078548c..dabd7ae76 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -43,8 +43,8 @@ write_mem_address(void *data) return 0; } -void -amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +static void +amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uint32_t priority) { amdgpu_context_handle context_handle; amdgpu_bo_handle ib_result_handle; @@ -65,7 +65,11 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty int job_count = 0; struct amdgpu_cmd_base *base_cmd = get_cmd_base(); - r = amdgpu_cs_ctx_create(device_handle, &context_handle); + if( priority == AMDGPU_CTX_PRIORITY_HIGH) + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle); + else + r = amdgpu_cs_ctx_create(device_handle, &context_handle); + igt_assert_eq(r, 0); r = amdgpu_bo_alloc_and_map_raw(device_handle, bo_cmd_size, bo_cmd_size, @@ -169,6 +173,87 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty free_cmd_base(base_cmd); } +void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +{ + int r; + FILE *fp; + char cmd[1024]; + char buffer[128]; + long sched_mask = 0; + struct drm_amdgpu_info_hw_ip info; + uint32_t ring_id, prio; + char sysfs[125]; + + r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info); + igt_assert_eq(r, 0); + if (!info.available_rings) + igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); + + if (ip_type == AMD_IP_GFX) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + else if (ip_type == AMD_IP_COMPUTE) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + else if (ip_type == AMD_IP_DMA) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); + r = access(sysfs, R_OK); + if (!r) { + fp = popen(cmd, "r"); + if (fp == NULL) + igt_skip("read the sysfs failed: %s \n",sysfs); + + if (fgets(buffer, 128, fp) != NULL) + sched_mask = strtol(buffer, NULL, 16); + + pclose(fp); + } else { + sched_mask = 1; + igt_info("The scheduling ring only enables one for ip %d\n", ip_type); + } + + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) { + /* check sched is ready is on the ring. */ + if (!((1 << ring_id) & sched_mask)) + continue; + + if (sched_mask > 1 && ring_id == 0 && + ip_type == AMD_IP_COMPUTE) { + /* for the compute multiple rings, the first queue + * as high priority compute queue. + * Need to create a high priority ctx. + */ + prio = AMDGPU_CTX_PRIORITY_HIGH; + } else if (sched_mask > 1 && ring_id == 1 && + ip_type == AMD_IP_GFX) { + /* for the gfx multiple rings, pipe1 queue0 as + * high priority graphics queue. + * Need to create a high priority ctx. + */ + prio = AMDGPU_CTX_PRIORITY_HIGH; + } else { + prio = AMDGPU_CTX_PRIORITY_NORMAL; + } + + if (sched_mask > 1) { + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s", + 0x1 << ring_id, sysfs); + r = system(cmd); + igt_assert_eq(r, 0); + } + + amdgpu_wait_memory(device_handle, ip_type, prio); + } + + /* recover the sched mask */ + if (sched_mask > 1) { + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); + r = system(cmd); + igt_assert_eq(r, 0); + } + +} + static void bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, uint32_t priority) -- 2.25.1 From jesse.zhang at amd.com Fri Jan 3 08:17:34 2025 From: jesse.zhang at amd.com (Jesse.zhang@amd.com) Date: Fri, 3 Jan 2025 16:17:34 +0800 Subject: [PATCH i-g-t v2 3/3] lib/amdpgu: fix the hard code when shedule ring. In-Reply-To: <20250103081734.2338675-1-jesse.zhang@amd.com> References: <20250103081734.2338675-1-jesse.zhang@amd.com> Message-ID: <20250103081734.2338675-3-jesse.zhang@amd.com> From: "Jesse.zhang at amd.com" Implementation of dynamically selected scheduling rings. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher Suggest-by: Vitaly Prosyak Signed-off-by: Jesse Zhang --- lib/amdgpu/amd_deadlock_helpers.c | 27 +++++++++++++++++---------- lib/amdgpu/amd_deadlock_helpers.h | 8 +++++--- tests/amdgpu/amd_deadlock.c | 28 ++++++++++++++++------------ 3 files changed, 38 insertions(+), 25 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index dabd7ae76..448c6568a 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -173,7 +173,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin free_cmd_base(base_cmd); } -void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci) { int r; FILE *fp; @@ -190,11 +190,14 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); if (ip_type == AMD_IP_GFX) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_COMPUTE) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_compute_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_DMA) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); r = access(sysfs, R_OK); @@ -401,7 +404,7 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type) free_cmd_base(base_cmd); } -void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type) +void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, struct pci_addr *pci) { int r; FILE *fp; @@ -418,11 +421,14 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); if (ip_type == AMD_IP_GFX) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_COMPUTE) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_compute_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_DMA) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); r = access(sysfs, R_OK); @@ -482,7 +488,7 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd } -void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type) +void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci) { int r; FILE *fp; @@ -498,7 +504,8 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha if (!info.available_rings) igt_info("SKIP ... as there's no ring for the sdma\n"); - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); r = access(sysfs, R_OK); if (!r) { diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h index 7f8419280..1d654c490 100644 --- a/lib/amdgpu/amd_deadlock_helpers.h +++ b/lib/amdgpu/amd_deadlock_helpers.h @@ -24,12 +24,14 @@ #ifndef __AMD_DEADLOCK_HELPERS_H__ #define __AMD_DEADLOCK_HELPERS_H__ +#include "amd_ip_blocks.h" + void -amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type); +amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci); void -bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type); +bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, struct pci_addr *pci); void -amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type); +amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci); #endif diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index b8bb053ca..29b7ae509 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -40,6 +40,7 @@ igt_main int fd = -1; int r; bool arr_cap[AMD_IP_MAX] = {0}; + struct pci_addr pci; igt_fixture { uint32_t major, minor; @@ -60,12 +61,15 @@ igt_main asic_rings_readness(device, 1, arr_cap); igt_skip_on(!is_deadlock_tests_enable(&gpu_info)); + igt_skip_on(get_pci_addr_from_fd(fd, &pci)); + igt_info("PCI Address: domain %04x, bus %02x, device %02x, function %02x\n", + pci.domain, pci.bus, pci.device, pci.function); } igt_describe("Test-GPU-reset-by-flooding-sdma-ring-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma") { if (arr_cap[AMD_IP_DMA]) { igt_dynamic_f("amdgpu-deadlock-sdma") - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA); + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA, &pci); } } @@ -75,7 +79,7 @@ igt_main is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-illegal-reg-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, - AMDGPU_HW_IP_GFX); + AMDGPU_HW_IP_GFX, &pci); } } @@ -85,7 +89,7 @@ igt_main is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-illegal-mem-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, - AMDGPU_HW_IP_GFX); + AMDGPU_HW_IP_GFX, &pci); } } @@ -94,7 +98,7 @@ igt_main igt_subtest_with_dynamic("amdgpu-deadlock-gfx") { if (arr_cap[AMD_IP_GFX]) { igt_dynamic_f("amdgpu-deadlock-gfx") - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_GFX); + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_GFX, &pci); } } @@ -103,7 +107,7 @@ igt_main if (arr_cap[AMD_IP_COMPUTE] && is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, - AMDGPU_HW_IP_COMPUTE); + AMDGPU_HW_IP_COMPUTE, &pci); } } @@ -111,7 +115,7 @@ igt_main igt_subtest_with_dynamic("amdgpu-deadlock-compute") { if (arr_cap[AMD_IP_COMPUTE]) { igt_dynamic_f("amdgpu-deadlock-compute") - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_COMPUTE); + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_COMPUTE, &pci); } } @@ -120,7 +124,7 @@ igt_main if (arr_cap[AMD_IP_DMA] && is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test") - amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG); + amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG, &pci); } } @@ -129,7 +133,7 @@ igt_main if (arr_cap[AMD_IP_DMA] && is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy") - amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG); + amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG, &pci); } } @@ -139,7 +143,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-badop-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } @@ -149,7 +153,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-mem-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } @@ -159,7 +163,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-reg-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } @@ -169,7 +173,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-length-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } -- 2.25.1 From patchwork at emeril.freedesktop.org Fri Jan 3 09:24:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 09:24:37 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_Add_single_engine_busyness_?= =?utf-8?q?stats_in_GPUTOP?= In-Reply-To: <20250103065304.45781-1-soham.purkait@intel.com> References: <20250103065304.45781-1-soham.purkait@intel.com> Message-ID: <173589627725.2524096.13703398140841845664@b555e5b46a47> == Series Details == Series: Add single engine busyness stats in GPUTOP URL : https://patchwork.freedesktop.org/series/143086/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12378_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12378_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12378_BAT, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12378_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_exec_balancer@twice-virtual-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12378_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12378 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013 IGTPW_12378: 12378 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013: 048d83e7f9dae81c058d31c371634c1c317b3013 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 09:28:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 09:28:02 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_single_engine_busynes?= =?utf-8?q?s_stats_in_GPUTOP?= In-Reply-To: <20250103065304.45781-1-soham.purkait@intel.com> References: <20250103065304.45781-1-soham.purkait@intel.com> Message-ID: <173589648246.2524096.10560683518891926689@b555e5b46a47> == Series Details == Series: Add single engine busyness stats in GPUTOP URL : https://patchwork.freedesktop.org/series/143086/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12378 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): fi-snb-2520m fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12378 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/bat-mtlp-8/igt at i915_selftest@live.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/bat-arlh-2/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12378 * Linux: CI_DRM_15892 -> CI_DRM_15896 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15896: 048d83e7f9dae81c058d31c371634c1c317b3013 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12378: 12378 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 09:54:01 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 09:54:01 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2Cv2=2C1/3=5D_lib/amdgpu=3A_enhance_wait_memory_helper?= In-Reply-To: <20250103081734.2338675-1-jesse.zhang@amd.com> References: <20250103081734.2338675-1-jesse.zhang@amd.com> Message-ID: <173589804134.2524096.1439139303448034263@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/3] lib/amdgpu: enhance wait memory helper URL : https://patchwork.freedesktop.org/series/143088/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12379_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12379_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_exec_basic@twice-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/bat-adlp-vf/igt at xe_exec_basic@twice-rebind.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12379 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013 IGTPW_12379: 12379 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013: 048d83e7f9dae81c058d31c371634c1c317b3013 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 10:11:24 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 10:11:24 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2Cv2=2C1/3=5D_lib/amdgpu=3A_enhance_wait_memory_helper?= In-Reply-To: <20250103081734.2338675-1-jesse.zhang@amd.com> References: <20250103081734.2338675-1-jesse.zhang@amd.com> Message-ID: <173589908407.2535057.8794608958773158355@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/3] lib/amdgpu: enhance wait memory helper URL : https://patchwork.freedesktop.org/series/143088/ State : failure == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12379 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12379 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12379, please notify your bug team (I915-ci-infra at 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_12379/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12379: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live at hangcheck: - fi-bsw-nick: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-bsw-nick/igt at i915_selftest@live at hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12379/fi-bsw-nick/igt at i915_selftest@live at hangcheck.html Known issues ------------ Here are the changes found in IGTPW_12379 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#12435]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-bsw-nick/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12379/fi-bsw-nick/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-3/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12379/bat-arlh-3/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12379/bat-arlh-2/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12379/bat-mtlp-6/igt at i915_selftest@live at workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12379 * Linux: CI_DRM_15892 -> CI_DRM_15896 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15896: 048d83e7f9dae81c058d31c371634c1c317b3013 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12379: 12379 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12379/index.html From pranay.samala at intel.com Fri Jan 3 10:34:14 2025 From: pranay.samala at intel.com (Pranay Samala) Date: Fri, 3 Jan 2025 16:04:14 +0530 Subject: [PATCH i-g-t] tests/kms_plane_scaling: Add logs to skips Message-ID: <20250103103414.10731-1-pranay.samala@intel.com> Having some logs for test failures & skips would make debugging much easier. Signed-off-by: Pranay Samala --- tests/kms_plane_scaling.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index c8c9aee31..2a8867822 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -1577,6 +1577,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) kmstest_pipe_name(pipe), igt_output_name(output)) intel_max_source_size_test(&data, pipe, output, mode, intel_paramtests[index].planesize); + } else { + igt_info("Unable to find the lowest " \ + "refresh rate mode\n"); } continue; } -- 2.34.1 From mohammed.thasleem at intel.com Fri Jan 3 10:43:35 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Fri, 3 Jan 2025 16:13:35 +0530 Subject: [PATCH i-g-t v3] tests/intel/kms_dirtyfb: Add skip condition for bmg platform In-Reply-To: <20230328021715.22290-1-mohammed.thasleem@intel.com> References: <20230328021715.22290-1-mohammed.thasleem@intel.com> Message-ID: <20250103104335.61694-1-mohammed.thasleem@intel.com> FBC test isn't supported on bmg, skip the test on this platform. v2: Add workaround id: Wa_16023588340. (Swati) v3: Add workaround id in code. Signed-off-by: Mohammed Thasleem --- tests/intel/kms_dirtyfb.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c index 35df9be3b..877ec8081 100644 --- a/tests/intel/kms_dirtyfb.c +++ b/tests/intel/kms_dirtyfb.c @@ -54,7 +54,7 @@ IGT_TEST_DESCRIPTION("Test the DIRTYFB ioctl is working properly with " #endif typedef struct { - int drm_fd; + int drm_fd, devid; int debugfs_fd; igt_display_t display; drmModeModeInfo *mode; @@ -345,6 +345,7 @@ igt_main igt_display_require(&data.display, data.drm_fd); igt_display_require_output(&data.display); igt_require(data.display.is_atomic); + data.devid = intel_get_drm_devid(data.drm_fd); data.bops = buf_ops_create(data.drm_fd); data.rendercopy = igt_get_render_copyfunc(intel_get_drm_devid(data.drm_fd)); @@ -362,6 +363,10 @@ igt_main data.output) { data.mode = igt_output_get_mode(data.output); + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(data.devid) && data.feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + if (!check_support(&data)) continue; -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 3 11:08:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 11:08:44 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_single_engine_busyness?= =?utf-8?q?_stats_in_GPUTOP?= In-Reply-To: <20250103065304.45781-1-soham.purkait@intel.com> References: <20250103065304.45781-1-soham.purkait@intel.com> Message-ID: <173590252466.2563600.819699100597052975@b555e5b46a47> == Series Details == Series: Add single engine busyness stats in GPUTOP URL : https://patchwork.freedesktop.org/series/143086/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12378_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12378_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12378_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12378_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-hdmi-a-6.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-hdmi-a-6.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-x: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-x.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-5.html * igt at kms_flip@2x-flip-vs-suspend at ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_flip@2x-flip-vs-suspend at ad-dp2-hdmi-a3.html * igt at kms_flip@modeset-vs-vblank-race at a-edp1: - shard-lnl: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_flip@modeset-vs-vblank-race at a-edp1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_flip@modeset-vs-vblank-race at a-edp1.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][9] +2 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_psr@fbc-psr2-dpms: - shard-lnl: NOTRUN -> [FAIL][10] +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_psr@fbc-psr2-dpms.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][11] -> [FAIL][12] +3 other tests fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_evict@evict-large-multi-vm: - shard-bmg: [PASS][13] -> [INCOMPLETE][14] +1 other test incomplete [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_evict@evict-large-multi-vm.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at xe_evict@evict-large-multi-vm.html Known issues ------------ Here are the changes found in XEIGTPW_12378_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3157]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#827]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-dg2-set2: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#3948]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html - shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#3719]) +3 other tests fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-dp-5-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#3767]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-dp-5-4-mc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-5-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2550]) +11 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-5-4-mc-ccs.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3279]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2231]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3658]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1407]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1428]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +8 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2314] / [Intel XE#2894]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#367]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#367]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3: - shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#3862]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3432]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +30 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +95 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#1727]) +2 other tests incomplete [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#3124]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#1727] / [Intel XE#3113]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#1727]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-6.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2887]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#306]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2252]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#373]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1178]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_content_protection@atomic-dpms at pipe-a-dp-5.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2341]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3278]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2321]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2320]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_edge_walk@256x256-top-bottom: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#3007]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_cursor_edge_walk@256x256-top-bottom.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_cursor_edge_walk@256x256-top-bottom.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#309]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#1475]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2286]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#2141]) +2 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#3383]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2244]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#2882]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#3321]) +3 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#3149]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1421]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#3879]) +5 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6: - shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#301]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][84] ([Intel XE#301]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-hdmi-a3: - shard-bmg: [PASS][85] -> [FAIL][86] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-hdmi-a3.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][87] ([Intel XE#2597]) +1 other test incomplete [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][88] ([Intel XE#2049]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip@modeset-vs-vblank-race: - shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#3098]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_flip@modeset-vs-vblank-race.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_flip@modeset-vs-vblank-race.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1401] / [Intel XE#1745]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1401]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1397]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +18 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#651]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#2333]) +6 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#656]) +21 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2352]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2313]) +28 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1469]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +8 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1503]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3898]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#346]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2927]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +14 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#908]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2499]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][116] -> [SKIP][117] ([Intel XE#2446]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_pm_rpm@cursor.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_pm_rpm@cursor.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#2893]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1489]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1406]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3414]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2413]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1435]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#2159]) +1 other test fail [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1499]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1499]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#756]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#756]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1091] / [Intel XE#2849]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][136] ([Intel XE#3869]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#3889]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#2364]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1600]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-null: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1130]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_exec_basic@multigpu-no-exec-null.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2322]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1192]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at xe_live_ktest@xe_bo.html * igt at xe_mmap@system: - shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#1130]) +23 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_mmap@system.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_mmap@system.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#378]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1420] / [Intel XE#2838]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2284]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#584]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#579]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#944]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#944]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3342]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][162] ([Intel XE#877]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][164] ([Intel XE#3321]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][166] ([Intel XE#301]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][168] ([Intel XE#2597]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: - shard-bmg: [INCOMPLETE][170] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][172] ([Intel XE#2882]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][174] -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][176] -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][178] ([Intel XE#1035]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][180] ([Intel XE#3313]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][182] -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][184] ([Intel XE#2883]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][186] ([Intel XE#899]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][188] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][190] ([Intel XE#1473]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][192] ([Intel XE#3865]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at xe_gt_freq@freq_suspend.html * igt at xe_module_load@load: - shard-lnl: ([PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [SKIP][216], [PASS][217], [PASS][218], [PASS][219]) ([Intel XE#378]) -> ([PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at xe_module_load@load.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][245] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][247] -> [PASS][248] +2 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at xe_pm_residency@gt-c6-freeze at gt1.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][249] ([Intel XE#958]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][251] ([Intel XE#3781]) -> [INCOMPLETE][252] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][253] ([Intel XE#3781]) -> [INCOMPLETE][254] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][255] ([Intel XE#2327]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@linear-32bpp-rotate-270.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][257] ([Intel XE#1124]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2231]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][259] ([Intel XE#2887]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html * igt at kms_chamelium_hpd@common-hpd-after-hibernate: - shard-bmg: [SKIP][261] ([Intel XE#2252]) -> [SKIP][262] ([Intel XE#3007]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-hibernate.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-hibernate.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][263] ([Intel XE#2244]) -> [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][265] ([Intel XE#2597]) -> [FAIL][266] ([Intel XE#3879]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: [SKIP][267] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][268] ([Intel XE#2136] / [Intel XE#2231]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][269] ([Intel XE#877]) -> [FAIL][270] ([Intel XE#2333]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [FAIL][271] ([Intel XE#2333]) -> [SKIP][272] ([Intel XE#2136] / [Intel XE#2231]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][273] ([Intel XE#2311]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][275] ([Intel XE#2313]) -> [SKIP][276] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt at kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][277] ([Intel XE#2493]) -> [SKIP][278] ([Intel XE#3007]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_multiple@tiling-y.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][279] ([Intel XE#2763]) -> [SKIP][280] ([Intel XE#3007]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-bmg: [SKIP][281] ([Intel XE#1489]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@psr2-suspend: - shard-bmg: [SKIP][283] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2231]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_psr@psr2-suspend.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_psr@psr2-suspend.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][285] ([Intel XE#2426]) -> [FAIL][286] ([Intel XE#1729]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_tiled_display@basic-test-pattern.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][287] ([Intel XE#362]) -> [FAIL][288] ([Intel XE#1729]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][289] ([Intel XE#1499]) -> [SKIP][290] ([Intel XE#3007]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vrr@max-min.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at kms_vrr@max-min.html * igt at xe_eudebug_online@set-breakpoint: - shard-bmg: [SKIP][291] ([Intel XE#2905]) -> [SKIP][292] ([Intel XE#1130]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_eudebug_online@set-breakpoint.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_eudebug_online@set-breakpoint.html * igt at xe_exec_basic@multigpu-no-exec-null-rebind: - shard-bmg: [SKIP][293] ([Intel XE#2322]) -> [SKIP][294] ([Intel XE#1130]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-null-rebind.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_exec_basic@multigpu-no-exec-null-rebind.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][295] ([Intel XE#2245]) -> [SKIP][296] ([Intel XE#1130]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pat@pat-index-xelp.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_pat@pat-index-xelp.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][297] ([Intel XE#944]) -> [SKIP][298] ([Intel XE#1130]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_query@multigpu-query-invalid-extension.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt at xe_query@multigpu-query-invalid-extension.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#3948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3948 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12378 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013 IGTPW_12378: 12378 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013: 048d83e7f9dae81c058d31c371634c1c317b3013 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 11:40:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 11:40:42 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Add_single_engine_busyne?= =?utf-8?q?ss_stats_in_GPUTOP?= In-Reply-To: <20250103065304.45781-1-soham.purkait@intel.com> References: <20250103065304.45781-1-soham.purkait@intel.com> Message-ID: <173590444208.2563600.293368887854496401@b555e5b46a47> == Series Details == Series: Add single engine busyness stats in GPUTOP URL : https://patchwork.freedesktop.org/series/143086/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15896_full -> IGTPW_12378_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12378_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12378_full, please notify your bug team (I915-ci-infra at 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_12378/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12378_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb5/igt at gem_tiled_swapping@non-threaded.html * igt at kms_atomic@plane-immutable-zpos: - shard-dg1: [PASS][2] -> [ABORT][3] +1 other test abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-18/igt at kms_atomic@plane-immutable-zpos.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_atomic@plane-immutable-zpos.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_15896_full and IGTPW_12378_full: ### New IGT tests (2) ### * igt at gem_render_copy@linear-to-vebox-y-tiled at lmem0: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12378_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at api_intel_bb@object-reloc-keep-cache.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#9318]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at debugfs_test@basic-hwmon.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +12 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-11/igt at gem_ccs@suspend-resume.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#12392] / [i915#7297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-11/igt at gem_ccs@suspend-resume at tile4-compressed-compfmt0-smem-lmem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at gem_ccs@suspend-resume at tile4-compressed-compfmt0-smem-lmem0.html * igt at gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_freq@sysfs: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#9561]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-3/igt at gem_ctx_freq@sysfs.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at gem_ctx_freq@sysfs.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: [PASS][24] -> [INCOMPLETE][25] ([i915#12353]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk1/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk1/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][26] +42 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at gem_ctx_param@set-priority-not-supported.html * igt at gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt at gem_ctx_persistence@engines-queued.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#5882]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-6/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][35] ([i915#7975] / [i915#8213]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at gem_eio@hibernate.html * igt at gem_eio@kms: - shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-13/igt at gem_eio@kms.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4036]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][43] ([i915#11965]) +2 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_endless@dispatch: - shard-dg2: [PASS][44] -> [TIMEOUT][45] ([i915#3778] / [i915#7016]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-8/igt at gem_exec_endless@dispatch.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at gem_exec_endless@dispatch.html * igt at gem_exec_endless@dispatch at vecs1: - shard-dg2: [PASS][46] -> [TIMEOUT][47] ([i915#7016]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-8/igt at gem_exec_endless@dispatch at vecs1.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at gem_exec_endless@dispatch at vecs1.html * igt at gem_exec_fence@concurrent: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at gem_exec_fence@concurrent.html * igt at gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_exec_flush@basic-batch-kernel-default-wb.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#5107]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +8 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt at gem_exec_reloc@basic-gtt-read.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at gem_exec_reloc@basic-scanout.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-3/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +11 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#7276]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][60] +433 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt at gem_exec_schedule@thriceslice.html * igt at gem_exec_schedule@wide: - shard-tglu: NOTRUN -> [INCOMPLETE][61] ([i915#13391]) +1 other test incomplete [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-9/igt at gem_exec_schedule@wide.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#2190]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2190]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#4613]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk4/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#284]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_media_vme.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-3/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4077]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][80] ([i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk1/igt at gem_pread@exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) +1 other test timeout [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#13398]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4270]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [TIMEOUT][89] ([i915#12917] / [i915#12964]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#8428]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt at gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at gem_set_tiling_vs_gtt.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#3323]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][95] ([i915#3323]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][99] -> [INCOMPLETE][100] ([i915#13356]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk5/igt at gem_workarounds@suspend-resume-fd.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk6/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt at gen9_exec_parse@bb-start-param.html - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at gen9_exec_parse@unaligned-access.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [PASS][108] -> [INCOMPLETE][109] ([i915#12797]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk2/igt at i915_pm_rpm@system-suspend.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk2/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#4387]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at i915_pm_sseu@full-enable.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][114] -> [DMESG-FAIL][115] ([i915#13393]) +1 other test dmesg-fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-1/igt at i915_selftest@live at workarounds.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-2/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][116] ([i915#9311]) +1 other test dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at i915_selftest@mock at memory_region.html - shard-tglu: NOTRUN -> [DMESG-WARN][117] ([i915#9311]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at i915_selftest@mock at memory_region.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#12454] / [i915#12712]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#8709]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#8709]) +23 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs-cc.html * igt at kms_async_flips@crc: - shard-tglu-1: NOTRUN -> [INCOMPLETE][124] ([i915#13287] / [i915#9878]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_async_flips@crc.html - shard-dg2: NOTRUN -> [WARN][125] ([i915#13287]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg1: NOTRUN -> [WARN][126] ([i915#13287]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [CRASH][127] ([i915#13287]) +3 other tests crash [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-3.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [INCOMPLETE][128] ([i915#13287]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][129] ([i915#13287] / [i915#13423]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt at kms_async_flips@crc at pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [INCOMPLETE][130] ([i915#13287]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at kms_async_flips@crc at pipe-a-hdmi-a-2.html * igt at kms_async_flips@crc at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [CRASH][131] ([i915#13287]) +3 other tests crash [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt at kms_async_flips@crc at pipe-c-hdmi-a-3.html * igt at kms_async_flips@test-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#10333]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt at kms_async_flips@test-cursor-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#9531]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#9531]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_big_fb@4-tiled-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5286]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#5286]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5286]) +6 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][140] ([i915#5286]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][141] -> [FAIL][142] ([i915#5138]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3638]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6187]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-6/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +11 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6095]) +24 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +69 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +151 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#12805]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +17 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][153] ([i915#12796]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#12313]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +74 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6095]) +19 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#12313]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) +150 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3742]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11616] / [i915#7213]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_cdclk@mode-transition at pipe-a-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#7828]) +8 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#7828]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#7828]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#7828]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#7828]) +11 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3299]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3116] / [i915#3299]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x10: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3555]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x10.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3555]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8814]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#13049]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#13049]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: [PASS][188] -> [SKIP][189] [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-snb5/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#4103]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#4103] / [i915#4213]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][193] ([i915#2346]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk9/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#9067]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#9067]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#4103]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#4103]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9833]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9723]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#9723]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9833]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8588]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][203] ([i915#8588]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1257]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_dp_aux_dev.html - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#1257]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#12402]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8812]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_dsc@dsc-with-formats.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4854]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][212] ([i915#4854]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#4854]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#1839]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#9337]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#9337]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#658]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][219] ([i915#658]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#658]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3637]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9934]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8381]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3637]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-2/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9934]) +6 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@blocking-wf_vblank at a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][228] ([i915#11989]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-9/igt at kms_flip@blocking-wf_vblank at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#11989]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@wf_vblank-ts-check at b-hdmi-a1: - shard-glk: NOTRUN -> [DMESG-WARN][231] ([i915#118]) +1 other test dmesg-warn [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt at kms_flip@wf_vblank-ts-check at b-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672] / [i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555] / [i915#8813]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-rkl: [PASS][245] -> [DMESG-WARN][246] ([i915#12964]) +19 other tests dmesg-warn [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8708]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: NOTRUN -> [FAIL][248] ([i915#6880]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#5439]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#10055]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][251] +27 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +21 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5354]) +23 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#1825]) +8 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][255] +102 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#10433] / [i915#3458]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5439]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#9766]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][259] ([i915#9766]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9766]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3023]) +26 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +41 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][263] +33 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +12 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8708]) +18 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +17 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt at kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_histogram@algo-basic: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#13389]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#13388]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#10656]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#12388]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12339]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12388]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#12388]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#12394]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#12339]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#12339]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#1839]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#6301]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0: - shard-rkl: NOTRUN -> [DMESG-WARN][284] ([i915#12964]) +22 other tests dmesg-warn [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][285] ([i915#10647] / [i915#12169]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt at kms_plane_alpha_blend@alpha-opaque-fb.html * igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][286] ([i915#10647]) +3 other tests fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][287] ([i915#10647] / [i915#12177]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#12247]) +4 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-d: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#12247]) +8 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#12247]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#6953]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#12247]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9812]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9685]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#9685]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#3828]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][301] ([i915#12913]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#5978]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][303] ([i915#9295]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-9/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#3361]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#9340]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#8430]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#8430]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][309] -> [SKIP][310] ([i915#9519]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9519]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][312] -> [SKIP][313] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-3/igt at kms_pm_rpm@modeset-non-lpsp.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#6524]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#6524]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#11520]) +7 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][317] ([i915#11520]) +12 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12316]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#11520]) +8 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#11520]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520]) +6 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][322] ([i915#11520]) +14 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb4/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9683]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#9683]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#9683]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9732]) +8 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-pr-suspend: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at kms_psr@fbc-pr-suspend.html * igt at kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#9732]) +22 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt at kms_psr@fbc-psr2-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +24 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +23 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][332] +402 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +18 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9685]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9685]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#4884]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#5289]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#5289]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#12755] / [i915#5190]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#12755]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#12755]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#3555]) +7 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#3555]) +6 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][347] ([i915#10959]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk6/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][348] +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][349] -> [FAIL][350] ([i915#9196]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-1/igt at kms_universal_plane@cursor-fb-leak.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt at kms_universal_plane@cursor-fb-leak.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12276]) +3 other tests incomplete [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk5/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk7/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#2437]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#2434]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at perf@mi-rpc.html * igt at perf_pmu@busy-idle-check-all at bcs0: - shard-mtlp: [PASS][363] -> [FAIL][364] ([i915#4349]) +5 other tests fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-7/igt at perf_pmu@busy-idle-check-all at bcs0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-6/igt at perf_pmu@busy-idle-check-all at bcs0.html * igt at perf_pmu@busy-idle-check-all at vcs0: - shard-dg2: NOTRUN -> [FAIL][365] ([i915#4349]) +5 other tests fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at perf_pmu@busy-idle-check-all at vcs0.html * igt at perf_pmu@busy-idle-check-all at vecs0: - shard-dg1: [PASS][366] -> [FAIL][367] ([i915#4349]) +3 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-13/igt at perf_pmu@busy-idle-check-all at vecs0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at perf_pmu@busy-idle-check-all at vecs0.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#8850]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait at rcs0: - shard-dg2: NOTRUN -> [SKIP][369] +8 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: NOTRUN -> [DMESG-FAIL][370] ([i915#12964]) +2 other tests dmesg-fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@most-busy-check-all at rcs0: - shard-rkl: NOTRUN -> [FAIL][371] ([i915#4349]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at perf_pmu@most-busy-check-all at rcs0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#8516]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#3291] / [i915#3708]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt at prime_vgem@basic-write.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#3708] / [i915#4077]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#3708]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#3708]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#9917]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#9917]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#9917]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-mtlp: NOTRUN -> [FAIL][380] ([i915#12910]) +9 other tests fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][381] ([i915#12910]) +9 other tests fail [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#4818]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][383] ([i915#13427]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-2/igt at gem_create@create-ext-cpu-access-big.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [DMESG-WARN][385] ([i915#12964]) -> [PASS][386] +24 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-1/igt at gem_ctx_shared@exec-single-timeline at vcs0.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at gem_ctx_shared@exec-single-timeline at vcs0.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][387] ([i915#7975] / [i915#8213]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: [SKIP][389] ([i915#4270]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-6/igt at gem_pxp@reject-modify-context-protection-off-2.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][391] -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-4/igt at gem_tiled_swapping@non-threaded.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [INCOMPLETE][393] ([i915#13356]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-5/igt at gem_workarounds@suspend-resume-fd.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_selftest@mock at sanitycheck: - shard-tglu: [ABORT][395] ([i915#13010]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-10/igt at i915_selftest@mock at sanitycheck.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at i915_selftest@mock at sanitycheck.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][397] ([i915#13287] / [i915#13423]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk6/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][399] ([i915#12402]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-8/igt at kms_dp_linktrain_fallback@dp-fallback.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-snb: [FAIL][401] ([i915#11989]) -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-snb2/igt at kms_flip@2x-wf_vblank-ts-check.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb2/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128: - shard-rkl: [DMESG-WARN][403] ([i915#12917] / [i915#12964]) -> [PASS][404] +3 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-3/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][405] ([i915#9340]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-6/igt at kms_pm_lpsp@kms-lpsp.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][407] ([i915#9519]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp-stress.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_vrr@negative-basic: - shard-mtlp: [FAIL][409] ([i915#10393]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-5/igt at kms_vrr@negative-basic.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at kms_vrr@negative-basic.html * igt at perf_pmu@busy-accuracy-2: - shard-dg1: [FAIL][411] -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-13/igt at perf_pmu@busy-accuracy-2.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt at perf_pmu@busy-accuracy-2.html * igt at perf_pmu@busy-accuracy-2 at vcs1: - shard-mtlp: [FAIL][413] -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-5/igt at perf_pmu@busy-accuracy-2 at vcs1.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt at perf_pmu@busy-accuracy-2 at vcs1.html * igt at perf_pmu@render-node-busy-idle at vcs1: - shard-mtlp: [FAIL][415] ([i915#4349]) -> [PASS][416] +3 other tests pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-2/igt at perf_pmu@render-node-busy-idle at vcs1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt at perf_pmu@render-node-busy-idle at vcs1.html #### Warnings #### * igt at gem_eio@in-flight-suspend: - shard-glk: [INCOMPLETE][417] ([i915#13197] / [i915#13390]) -> [INCOMPLETE][418] ([i915#13390]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk6/igt at gem_eio@in-flight-suspend.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk9/igt at gem_eio@in-flight-suspend.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [SKIP][419] ([i915#4270]) -> [TIMEOUT][420] ([i915#12917] / [i915#12964]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-7/igt at gem_pxp@reject-modify-context-protection-off-1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][421] ([i915#12817] / [i915#9820]) -> [ABORT][422] ([i915#10887] / [i915#12817] / [i915#9820]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-4/igt at i915_module_load@reload-with-fault-injection.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][423] ([i915#10131] / [i915#9820]) -> [ABORT][424] ([i915#10131] / [i915#10887] / [i915#9820]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-tglu: [ABORT][425] ([i915#13010]) -> [DMESG-WARN][426] ([i915#9311]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-10/igt at i915_selftest@mock.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt at i915_selftest@mock.html * igt at kms_async_flips@crc-atomic: - shard-glk: [INCOMPLETE][427] ([i915#13287]) -> [INCOMPLETE][428] ([i915#13287] / [i915#13423]) +1 other test incomplete [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk3/igt at kms_async_flips@crc-atomic.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk4/igt at kms_async_flips@crc-atomic.html * igt at kms_content_protection@srm: - shard-dg2: [TIMEOUT][429] ([i915#7173]) -> [SKIP][430] ([i915#7118]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-10/igt at kms_content_protection@srm.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt at kms_content_protection@srm.html * igt at kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][431] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][432] ([i915#12745] / [i915#1982] / [i915#4839]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk5/igt at kms_flip@flip-vs-suspend.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk2/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: [INCOMPLETE][433] ([i915#12745]) -> [INCOMPLETE][434] ([i915#12745] / [i915#1982]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk2/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][435] ([i915#3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/index.html From mohammed.thasleem at intel.com Fri Jan 3 11:57:10 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Fri, 3 Jan 2025 17:27:10 +0530 Subject: [PATCH i-g-t v3] tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform In-Reply-To: <20230328023811.46847-1-mohammed.thasleem@intel.com> References: <20230328023811.46847-1-mohammed.thasleem@intel.com> Message-ID: <20250103115710.84108-1-mohammed.thasleem@intel.com> FBC test isn't supported on bmg, skip the test on this platform. v2: Add workaround id: Wa_16023588340. (Pranay) Use IS_BATTLEMAGE check instead using devid. v3: Add workaround id in code. Signed-off-by: Mohammed Thasleem --- tests/intel/kms_fbcon_fbt.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c index ab4819d23..9c3ff7a21 100644 --- a/tests/intel/kms_fbcon_fbt.c +++ b/tests/intel/kms_fbcon_fbt.c @@ -73,7 +73,7 @@ IGT_TEST_DESCRIPTION("Test the relationship between fbcon and the frontbuffer " #define MAX_CONNECTORS 32 struct drm_info { - int fd, debugfs_fd, crtc_id; + int fd, debugfs_fd, crtc_id, devid; struct igt_fb fb; drmModeResPtr res; drmModeConnectorPtr connectors[MAX_CONNECTORS]; @@ -418,6 +418,8 @@ static void setup_environment(struct drm_info *drm) igt_require(drm->fd >= 0); drm->debugfs_fd = igt_debugfs_dir(drm->fd); igt_require(drm->debugfs_fd >= 0); + drm->devid = intel_get_drm_devid(drm->fd); + igt_require(drm->devid >= 0); drm->res = drmModeGetResources(drm->fd); igt_require(drm->res); @@ -457,16 +459,25 @@ igt_main igt_describe("Test the relationship between fbcon and the frontbuffer " "tracking infrastructure with fbc enabled."); - igt_subtest("fbc") + igt_subtest("fbc") { + /* FBC disabled: Wa_16023588340 */ + igt_require_f(!IS_BATTLEMAGE(drm.devid), "FBC isn't supported on BMG\n"); subtest(&drm, &fbc, false); + } + igt_describe("Test the relationship between fbcon and the frontbuffer " "tracking infrastructure with psr enabled."); igt_subtest("psr") subtest(&drm, &psr, false); + igt_describe("Suspend test to validate the relationship between fbcon and the frontbuffer " "tracking infrastructure with fbc enabled."); - igt_subtest("fbc-suspend") + igt_subtest("fbc-suspend") { + /* FBC disabled: Wa_16023588340 */ + igt_require_f(!IS_BATTLEMAGE(drm.devid), "FBC isn't supported on BMG\n"); subtest(&drm, &fbc, true); + } + igt_describe("Suspend test to validate the relationship between fbcon and the frontbuffer " "tracking infrastructure with psr enabled."); igt_subtest("psr-suspend") -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 3 12:16:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 12:16:53 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2Cv2=2C1/3=5D_lib/amdgpu=3A_enhance_wait_memory_helper?= In-Reply-To: <20250103081734.2338675-1-jesse.zhang@amd.com> References: <20250103081734.2338675-1-jesse.zhang@amd.com> Message-ID: <173590661311.2563582.8865533630826006714@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/3] lib/amdgpu: enhance wait memory helper URL : https://patchwork.freedesktop.org/series/143088/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12379_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12379_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12379_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12379_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible at b-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at b-hdmi-a3.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-c: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-c.html * igt at kms_pm_rpm@universal-planes at plane-59: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_rpm@universal-planes at plane-59.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_pm_rpm@universal-planes at plane-59.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][5] -> [FAIL][6] +4 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_vblank@ts-continuation-suspend.html Known issues ------------ Here are the changes found in XEIGTPW_12379_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3157]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@unused-modifier: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#3007]) +8 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_addfb_basic@unused-modifier.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_addfb_basic@unused-modifier.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][10] -> [FAIL][11] ([Intel XE#827]) +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@test-time-stamp: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@test-time-stamp.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_async_flips@test-time-stamp.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3279]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition: - shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#3908]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_atomic_transition@plane-all-modeset-transition.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_atomic_transition@plane-all-modeset-transition.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-bmg: [PASS][17] -> [INCOMPLETE][18] ([Intel XE#3225]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3658]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-7/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1428]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +8 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-7/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +136 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-dp-5.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#3432]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1727]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-6/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2341]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#3407]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_content_protection@srm at pipe-a-dp-5.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2321]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2321]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1424]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-2/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#309]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2286]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#2141]) +2 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#3383]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2244]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][55] -> [FAIL][56] ([Intel XE#2882] / [Intel XE#3288]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#2882]) +1 other test fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at bd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][61] ([Intel XE#3321]) +2 other tests fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at bd-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#3149]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-1/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [FAIL][64] ([Intel XE#886]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-5/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301]) +1 other test fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#3321]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][69] ([Intel XE#2597]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#3879]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2293]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401] / [Intel XE#1745]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2136] / [Intel XE#2231]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html - shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#2136]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2311]) +16 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#651]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-1/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2136] / [Intel XE#2231]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2136] / [Intel XE#2351]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#2333]) +9 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#656]) +21 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#651]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2352]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +27 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1469]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1503]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#3898]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#346]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#2927]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2927]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][97] -> [FAIL][98] ([Intel XE#616]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][101] ([Intel XE#2566]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +14 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2423] / [i915#2575]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#718]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#908]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2499]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@universal-planes: - shard-dg2-set2: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#2864]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_rpm@universal-planes.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_pm_rpm@universal-planes.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2893]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1406]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#3924]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at kms_psr@psr2-sprite-plane-onoff.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#3414] / [Intel XE#3904]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2413]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#3007]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2450]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1499]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1499]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#756]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#756]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1091] / [Intel XE#2849]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][129] ([Intel XE#3869]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3889]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-2/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at xe_eudebug_online@single-step.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-vram: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#688]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][135] ([Intel XE#2364]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][136] ([Intel XE#1600]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@many-execqueues-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1130]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at xe_exec_basic@many-execqueues-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1392]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2322]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][140] -> [SKIP][141] ([Intel XE#1130]) +19 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_basic@once-userptr-invalidate-race.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_exec_basic@once-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#288]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1192]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: NOTRUN -> [FAIL][144] ([Intel XE#3099]) +1 other test fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#378]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1420] / [Intel XE#2838]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2284]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#584]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-4/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][151] -> [ABORT][152] ([Intel XE#1358] / [Intel XE#1607]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_pm@s4-exec-after.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#579]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_pm_residency@cpg-basic: - shard-bmg: [PASS][154] -> [INCOMPLETE][155] ([Intel XE#3088]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_pm_residency@cpg-basic.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at xe_pm_residency@cpg-basic.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#944]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-6/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3342]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-7/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@invalid-flag-xe_vm_create_scratch_fault: - shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#1130]) +20 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_vm@invalid-flag-xe_vm_create_scratch_fault.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at xe_vm@invalid-flag-xe_vm_create_scratch_fault.html * igt at xe_vm@large-split-misaligned-binds-134217728: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1130]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_vm@large-split-misaligned-binds-134217728.html #### Possible fixes #### * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][163] ([Intel XE#911]) -> [PASS][164] +3 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][165] ([Intel XE#3321]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp5: - shard-dg2-set2: [FAIL][167] ([Intel XE#3321]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp5.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp5.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][169] ([Intel XE#301]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][171] ([Intel XE#2597]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][173] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][175] ([Intel XE#2597]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: - shard-bmg: [INCOMPLETE][177] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][179] ([Intel XE#2882]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][181] -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-466/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][183] -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-4/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][185] ([Intel XE#1035]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][187] ([Intel XE#361]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-436/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][189] ([Intel XE#3313]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-8/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][191] -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-6/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][193] ([Intel XE#2883]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-6/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [FAIL][195] ([Intel XE#899]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-2/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][197] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][199] ([Intel XE#3865]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][201] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-3/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][203] -> [PASS][204] +2 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-1/igt at xe_pm_residency@gt-c6-freeze at gt1.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][205] ([Intel XE#958]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][207] ([Intel XE#3781]) -> [INCOMPLETE][208] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-435/igt at kms_async_flips@crc-atomic.html - shard-bmg: [INCOMPLETE][209] ([Intel XE#3781]) -> [INCOMPLETE][210] ([Intel XE#3781] / [Intel XE#3946]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc-atomic.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][211] ([Intel XE#2327]) -> [SKIP][212] ([Intel XE#2136] / [Intel XE#2231]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_big_fb@linear-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][213] ([Intel XE#316]) -> [SKIP][214] ([Intel XE#2136]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@linear-32bpp-rotate-90.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][215] ([Intel XE#1124]) -> [SKIP][216] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html - shard-dg2-set2: [SKIP][217] ([Intel XE#1124]) -> [SKIP][218] ([Intel XE#2136] / [Intel XE#2351]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][219] ([Intel XE#1124]) -> [SKIP][220] ([Intel XE#2136]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][221] ([Intel XE#367]) -> [SKIP][222] ([Intel XE#2423] / [i915#2575]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-bmg: [SKIP][223] ([Intel XE#2887]) -> [SKIP][224] ([Intel XE#2136] / [Intel XE#2231]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][225] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][226] ([Intel XE#2136]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][227] ([Intel XE#3862]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2231]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2-set2: [SKIP][229] ([Intel XE#3442]) -> [SKIP][230] ([Intel XE#2136]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][231] ([Intel XE#2373]) -> [SKIP][232] ([Intel XE#3007]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_feature_discovery@display-3x.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_feature_discovery@display-3x.html - shard-dg2-set2: [SKIP][233] ([Intel XE#703]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-3x.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_feature_discovery@display-3x.html * igt at kms_frontbuffer_tracking@drrs-2p-rte: - shard-bmg: [SKIP][235] ([Intel XE#2311]) -> [SKIP][236] ([Intel XE#2136] / [Intel XE#2231]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-rte.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-rte.html - shard-dg2-set2: [SKIP][237] ([Intel XE#651]) -> [SKIP][238] ([Intel XE#2136]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-rte.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][239] ([Intel XE#877]) -> [FAIL][240] ([Intel XE#2333]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][241] ([Intel XE#2333]) -> [SKIP][242] ([Intel XE#2136] / [Intel XE#2231]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][243] ([Intel XE#2313]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][245] ([Intel XE#653]) -> [SKIP][246] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][247] ([Intel XE#2340]) -> [SKIP][248] ([Intel XE#3007]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_getfb@getfb2-accept-ccs.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][249] ([Intel XE#2763]) -> [SKIP][250] ([Intel XE#3007]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_psr@fbc-pr-no-drrs: - shard-bmg: [SKIP][251] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][252] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr@fbc-pr-no-drrs.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_psr@fbc-pr-no-drrs.html - shard-dg2-set2: [SKIP][253] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][254] ([Intel XE#2136] / [Intel XE#2351]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@fbc-pr-no-drrs.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2-set2: [SKIP][255] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][256] ([Intel XE#2136]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@psr2-cursor-blt.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_psr@psr2-cursor-blt.html * igt at kms_setmode@basic-clone-single-crtc: - shard-dg2-set2: [SKIP][257] ([Intel XE#455]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_setmode@basic-clone-single-crtc.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][259] ([Intel XE#2426]) -> [SKIP][260] ([Intel XE#3007]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_tiled_display@basic-test-pattern.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][261] ([Intel XE#362]) -> [SKIP][262] ([Intel XE#2423] / [i915#2575]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][263] ([Intel XE#2905]) -> [SKIP][264] ([Intel XE#1130]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_eudebug_online@single-step-one.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at xe_eudebug_online@single-step-one.html - shard-dg2-set2: [SKIP][265] ([Intel XE#2905]) -> [SKIP][266] ([Intel XE#1130]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug_online@single-step-one.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_eudebug_online@single-step-one.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][267] ([Intel XE#1473]) -> [FAIL][268] ([Intel XE#1000]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-5/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: [SKIP][269] ([Intel XE#2322]) -> [SKIP][270] ([Intel XE#1130]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_exec_basic@multigpu-once-basic-defer-bind.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at xe_exec_basic@multigpu-once-basic-defer-bind.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][271] ([Intel XE#288]) -> [SKIP][272] ([Intel XE#1130]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][273] ([Intel XE#944]) -> [SKIP][274] ([Intel XE#1130]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_query@multigpu-query-invalid-cs-cycles.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-bmg-3/igt at xe_query@multigpu-query-invalid-cs-cycles.html - shard-dg2-set2: [SKIP][275] ([Intel XE#944]) -> [SKIP][276] ([Intel XE#1130]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_query@multigpu-query-invalid-cs-cycles.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/shard-dg2-434/igt at xe_query@multigpu-query-invalid-cs-cycles.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12379 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013 IGTPW_12379: 12379 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013: 048d83e7f9dae81c058d31c371634c1c317b3013 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12379/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Fri Jan 3 12:41:15 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Fri, 3 Jan 2025 18:11:15 +0530 Subject: [PATCH v1] tests/intel: Enhance the wedged_mode sysfs support Message-ID: <20250103124115.765794-1-pravalika.gurram@intel.com> 1. Added support to read the wedged_mode sysfs 2. Handle the -ETIMEDOUT return value during forcewake_all sysfs open Signed-off-by: Pravalika Gurram --- tests/intel/xe_debugfs.c | 2 +- tests/intel/xe_wedged.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index bcbb5036a..3a83868ba 100644 --- a/tests/intel/xe_debugfs.c +++ b/tests/intel/xe_debugfs.c @@ -268,7 +268,7 @@ test_forcewake(int fd) { int handle = igt_debugfs_open(fd, "forcewake_all", O_WRONLY); - igt_assert_neq(handle, -1); + igt_assert_lte(0, handle); close(handle); } diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index 613d571b4..d4acd5f7f 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -208,6 +208,7 @@ igt_main struct drm_xe_engine_class_instance *hwe; int fd; char pci_slot[NAME_MAX]; + char str[150]; igt_fixture { fd = drm_open_driver(DRIVER_XE); @@ -228,6 +229,7 @@ igt_main igt_assert_eq(simple_ioctl(fd), 0); xe_for_each_engine(fd, hwe) simple_exec(fd, hwe); + igt_debugfs_read(fd, "wedged_mode", str); } igt_subtest_f("wedged-at-any-timeout") { -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 3 12:51:24 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 12:51:24 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/kms=5Fplane=5Fscaling?= =?utf-8?q?=3A_Add_logs_to_skips?= In-Reply-To: <20250103103414.10731-1-pranay.samala@intel.com> References: <20250103103414.10731-1-pranay.samala@intel.com> Message-ID: <173590868437.2563600.2291407694946902436@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips URL : https://patchwork.freedesktop.org/series/143093/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12380_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_8174 -> IGTPW_12380 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12380: 90a8244431e728b782ad30dfb12965174ff5b25b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 12:53:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 12:53:31 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/kms=5Fplane=5Fscali?= =?utf-8?q?ng=3A_Add_logs_to_skips?= In-Reply-To: <20250103103414.10731-1-pranay.samala@intel.com> References: <20250103103414.10731-1-pranay.samala@intel.com> Message-ID: <173590881169.2563600.9885493337567240130@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips URL : https://patchwork.freedesktop.org/series/143093/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12380 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12380 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/bat-arlh-3/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/bat-arlh-2/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12380 * Linux: CI_DRM_15892 -> CI_DRM_15898 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15898: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12380: 90a8244431e728b782ad30dfb12965174ff5b25b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 13:19:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 13:19:42 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173591038297.2629134.14620126499029416085@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141312/ State : failure == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12381 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12381 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12381, please notify your bug team (I915-ci-infra at 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_12381/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12381: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_fence@basic-await at ccs0: - bat-arlh-2: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at gem_exec_fence@basic-await at ccs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/bat-arlh-2/igt at gem_exec_fence@basic-await at ccs0.html * igt at i915_selftest@live: - fi-hsw-4770: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-hsw-4770/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/fi-hsw-4770/igt at i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12381 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-3/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [PASS][7] -> [DMESG-FAIL][8] ([i915#13393]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arls-5/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/bat-arlh-2/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][11] ([i915#13393]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12381 * Linux: CI_DRM_15892 -> CI_DRM_15898 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15898: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12381: 074bed11364d33d37b2f359f4a7742697744decb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12381/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 13:43:03 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 13:43:03 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173591178304.2640032.3233078077964895101@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141312/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12381_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12381_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_intel_bb@intel-bb-blit-y: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-y.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-y.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12381 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12381: 074bed11364d33d37b2f359f4a7742697744decb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 13:45:54 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 13:45:54 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Ffbcon?= =?utf-8?q?=5Ffbt=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173591195443.2642194.12227791852744368529@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141281/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12382 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12382 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-adlp-9: [PASS][1] -> [INCOMPLETE][2] ([i915#9413]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-adlp-9/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/bat-adlp-9/igt at i915_selftest@live.html - bat-adlp-11: [PASS][3] -> [INCOMPLETE][4] ([i915#9413]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-adlp-11/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/bat-adlp-11/igt at i915_selftest@live.html - bat-twl-2: [PASS][5] -> [ABORT][6] ([i915#12919] / [i915#13397]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-twl-2/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/bat-twl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [PASS][7] -> [ABORT][8] ([i915#12919]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13397]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13397 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12382 * Linux: CI_DRM_15892 -> CI_DRM_15898 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15898: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12382: 4f353044f9202b40007c2d4014135bc818bff1c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 14:06:54 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 14:06:54 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Ffbcon=5Ff?= =?utf-8?q?bt=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173591321426.2652507.688195669746474003@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141281/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12382_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_8174 -> IGTPW_12382 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12382: 4f353044f9202b40007c2d4014135bc818bff1c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pranay.samala at intel.com Fri Jan 3 14:22:39 2025 From: pranay.samala at intel.com (Samala, Pranay) Date: Fri, 3 Jan 2025 14:22:39 +0000 Subject: [PATCH i-g-t v3] tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform In-Reply-To: <20250103115710.84108-1-mohammed.thasleem@intel.com> References: <20230328023811.46847-1-mohammed.thasleem@intel.com> <20250103115710.84108-1-mohammed.thasleem@intel.com> Message-ID: Hi Thasleem, > -----Original Message----- > From: igt-dev On Behalf Of Mohammed > Thasleem > Sent: Friday, January 3, 2025 5:27 PM > To: igt-dev at lists.freedesktop.org > Cc: Thasleem, Mohammed > Subject: [PATCH i-g-t v3] tests/intel/kms_fbcon_fbt: Add skip condition for bmg > platform > > FBC test isn't supported on bmg, skip the test on this platform. > > v2: Add workaround id: Wa_16023588340. (Pranay) > Use IS_BATTLEMAGE check instead using devid. > v3: Add workaround id in code. > > Signed-off-by: Mohammed Thasleem Please add Reviewed-by as RB is not reflecting. Thanks and Regards, Pranay Samala > --- > tests/intel/kms_fbcon_fbt.c | 17 ++++++++++++++--- > 1 file changed, 14 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c index > ab4819d23..9c3ff7a21 100644 > --- a/tests/intel/kms_fbcon_fbt.c > +++ b/tests/intel/kms_fbcon_fbt.c > @@ -73,7 +73,7 @@ IGT_TEST_DESCRIPTION("Test the relationship between > fbcon and the frontbuffer " > #define MAX_CONNECTORS 32 > > struct drm_info { > - int fd, debugfs_fd, crtc_id; > + int fd, debugfs_fd, crtc_id, devid; > struct igt_fb fb; > drmModeResPtr res; > drmModeConnectorPtr connectors[MAX_CONNECTORS]; @@ -418,6 > +418,8 @@ static void setup_environment(struct drm_info *drm) > igt_require(drm->fd >= 0); > drm->debugfs_fd = igt_debugfs_dir(drm->fd); > igt_require(drm->debugfs_fd >= 0); > + drm->devid = intel_get_drm_devid(drm->fd); > + igt_require(drm->devid >= 0); > > drm->res = drmModeGetResources(drm->fd); > igt_require(drm->res); > @@ -457,16 +459,25 @@ igt_main > > igt_describe("Test the relationship between fbcon and the frontbuffer " > "tracking infrastructure with fbc enabled."); > - igt_subtest("fbc") > + igt_subtest("fbc") { > + /* FBC disabled: Wa_16023588340 */ > + igt_require_f(!IS_BATTLEMAGE(drm.devid), "FBC isn't supported > on > +BMG\n"); > subtest(&drm, &fbc, false); > + } > + > igt_describe("Test the relationship between fbcon and the frontbuffer " > "tracking infrastructure with psr enabled."); > igt_subtest("psr") > subtest(&drm, &psr, false); > + > igt_describe("Suspend test to validate the relationship between fbcon > and the frontbuffer " > "tracking infrastructure with fbc enabled."); > - igt_subtest("fbc-suspend") > + igt_subtest("fbc-suspend") { > + /* FBC disabled: Wa_16023588340 */ > + igt_require_f(!IS_BATTLEMAGE(drm.devid), "FBC isn't supported > on > +BMG\n"); > subtest(&drm, &fbc, true); > + } > + > igt_describe("Suspend test to validate the relationship between fbcon > and the frontbuffer " > "tracking infrastructure with psr enabled."); > igt_subtest("psr-suspend") > -- > 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 3 14:29:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 14:29:14 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel=3A_Enhance_th?= =?utf-8?q?e_wedged=5Fmode_sysfs_support?= In-Reply-To: <20250103124115.765794-1-pravalika.gurram@intel.com> References: <20250103124115.765794-1-pravalika.gurram@intel.com> Message-ID: <173591455466.2661123.15777544575895046614@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support URL : https://patchwork.freedesktop.org/series/143094/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12383 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12383 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/bat-arlh-3/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/bat-mtlp-6/igt at i915_selftest@live at workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12383 * Linux: CI_DRM_15892 -> CI_DRM_15898 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15898: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12383: 18dc2133030940556ad75ee0c12c4801627b5280 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 14:29:24 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 14:29:24 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel=3A_Enhance_the_?= =?utf-8?q?wedged=5Fmode_sysfs_support?= In-Reply-To: <20250103124115.765794-1-pravalika.gurram@intel.com> References: <20250103124115.765794-1-pravalika.gurram@intel.com> Message-ID: <173591456426.2661123.3308337839077047765@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support URL : https://patchwork.freedesktop.org/series/143094/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12383_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12383_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3958]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12383 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12383: 18dc2133030940556ad75ee0c12c4801627b5280 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From santhosh.reddy.guddati at intel.com Fri Jan 3 15:33:33 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 3 Jan 2025 21:03:33 +0530 Subject: [PATCH i-g-t v2] lib/igt_kms: Backup connector modes before sorting Message-ID: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Backup connector modes before sorting to ensure the original mode is not changed if the joiner is not found.This will skip updating connector->mode[0] if joiner is not available. v2: Dont sort the modes, instead check for the required modes (Luca Coelho) Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13287 Signed-off-by: Santhosh Reddy Guddati --- lib/igt_kms.c | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index a67d17c4f..95e3059f7 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6418,14 +6418,13 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, { bool found = false; - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); - if (!found) { - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); + for (int i=0; i< connector->count_modes; i++) { + if (igt_bigjoiner_possible(drm_fd, &connector->modes[i], max_dotclock)) { + *mode = connector->modes[i]; + found = true; + break; + } } - if (found) - *mode = connector->modes[0]; return found; } @@ -6462,14 +6461,14 @@ bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, { bool found = false; - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - found = igt_ultrajoiner_possible(&connector->modes[0], max_dotclock); - if (!found) { - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - found = igt_ultrajoiner_possible(&connector->modes[0], max_dotclock); + for (int i = 0; i < connector->count_modes; i++) { + if (igt_ultrajoiner_possible(&connector->modes[i], max_dotclock)) { + *mode = connector->modes[i]; + found = true; + break; + } } - if (found) - *mode = connector->modes[0]; + return found; } -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 3 16:01:16 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 16:01:16 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Fplane=5Fscalin?= =?utf-8?q?g=3A_Add_logs_to_skips?= In-Reply-To: <20250103103414.10731-1-pranay.samala@intel.com> References: <20250103103414.10731-1-pranay.samala@intel.com> Message-ID: <173592007665.2698987.1705691770248711325@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips URL : https://patchwork.freedesktop.org/series/143093/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12380_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12380_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12380_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12380_full: ### IGT changes ### #### Possible regressions #### * igt at kms_psr@fbc-psr2-cursor-render at edp-1: - shard-lnl: [PASS][1] -> [FAIL][2] +5 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at kms_psr@fbc-psr2-cursor-render at edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at kms_psr@fbc-psr2-cursor-render at edp-1.html Known issues ------------ Here are the changes found in XEIGTPW_12380_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#1885]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at core_hotunplug@hotreplug-lateclose.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at core_hotunplug@hotreplug-lateclose.html - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#1885]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at core_hotunplug@hotreplug-lateclose.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at core_hotunplug@hotreplug-lateclose.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3007]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#2423] / [i915#2575]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3157]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#3719]) +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@atomic-invalid-params: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_atomic@atomic-invalid-params.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_atomic@atomic-invalid-params.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3658]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1428]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-d-dp-5.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +109 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#3862]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#2692]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#2692]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2341]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#3407]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_content_protection@srm at pipe-a-dp-5.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3278]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2321]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#3226]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#309]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][57] -> [DMESG-WARN][58] ([Intel XE#877]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#1475]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#2141]) +2 other tests fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#3383]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2244]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#2882]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-blocking-wf_vblank.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#3321]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +10 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#3321]) +4 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend at ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][74] ([Intel XE#2597]) +3 other tests incomplete [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend at ac-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#886]) +1 other test fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401] / [Intel XE#1745]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +16 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#2333]) +7 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2352]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) +24 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#656]) +17 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2136]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1469]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#653]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#3898]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#346]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#2927]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2927]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#3007]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +9 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#908]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2499]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: NOTRUN -> [FAIL][107] ([Intel XE#3609]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2893]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1489]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#1489]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_psr@fbc-psr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#3414]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2413]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1435]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#362]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2450]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1499]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1499]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#756]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#756]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1091] / [Intel XE#2849]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][126] -> [INCOMPLETE][127] ([Intel XE#3918]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][128] ([Intel XE#3869]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3889]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-mixed-threads-large: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#688]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_balancer@many-cm-virtual-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1130]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_exec_balancer@many-cm-virtual-userptr-rebind.html - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1130]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at xe_exec_balancer@many-cm-virtual-userptr-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1392]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2322]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +8 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_exec_threads@threads-hang-fd-userptr-invalidate-race: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1130]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1192]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#3099]) +1 other test fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#378]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1420] / [Intel XE#2838]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#584]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2284] / [Intel XE#366]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][148] -> [ABORT][149] ([Intel XE#1358] / [Intel XE#1607]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_pm@s4-exec-after.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#579]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#944]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#944]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#3342]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@mixed-userptr-misaligned-binds-1611661312: - shard-bmg: [PASS][154] -> [SKIP][155] ([Intel XE#1130]) +15 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][156] ([Intel XE#3321]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][158] ([Intel XE#301]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp5: - shard-dg2-set2: [FAIL][160] ([Intel XE#3149]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp5.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp5.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][162] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][164] ([Intel XE#2597]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][166] -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-466/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][168] -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][170] ([Intel XE#1035]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][172] ([Intel XE#718]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][174] ([Intel XE#1430]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc6-dpms.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][176] ([Intel XE#3313]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_sequence@get-forked-busy.html * igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][178] -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at kms_sequence@get-forked-busy at pipe-a-hdmi-a-3.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][180] ([Intel XE#899]) -> [PASS][181] +3 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][182] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][184] ([Intel XE#3865]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html * igt at xe_module_load@load: - shard-lnl: ([PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [SKIP][208], [PASS][209], [PASS][210], [PASS][211]) ([Intel XE#378]) -> ([PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-7/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-3/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-1/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-4/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-5/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-2/igt at xe_module_load@load.html - shard-bmg: ([PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [SKIP][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260]) ([Intel XE#2457]) -> ([PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-3/igt at xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-4/igt at xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-5/igt at xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at xe_module_load@load.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][285] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][287] ([Intel XE#958]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][289] ([Intel XE#3781]) -> [INCOMPLETE][290] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-8/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][291] ([Intel XE#3781]) -> [INCOMPLETE][292] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][293] ([Intel XE#1124]) -> [SKIP][294] ([Intel XE#2136]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-bmg: [SKIP][295] ([Intel XE#1124]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2231]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][297] ([Intel XE#2907]) -> [SKIP][298] ([Intel XE#2136]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][299] ([Intel XE#2252]) -> [SKIP][300] ([Intel XE#3007]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_chamelium_hpd@dp-hpd-storm.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][301] ([Intel XE#373]) -> [SKIP][302] ([Intel XE#2423] / [i915#2575]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_hpd@dp-hpd-storm.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@type1: - shard-bmg: [SKIP][303] ([Intel XE#2341]) -> [SKIP][304] ([Intel XE#3007]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_content_protection@type1.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_content_protection@type1.html - shard-dg2-set2: [SKIP][305] ([Intel XE#455]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_content_protection@type1.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][307] ([Intel XE#2321]) -> [SKIP][308] ([Intel XE#3007]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_crc@cursor-random-512x512.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html - shard-dg2-set2: [SKIP][309] ([Intel XE#308]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_cursor_crc@cursor-random-512x512.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][311] ([Intel XE#2323]) -> [SKIP][312] ([Intel XE#3007]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg2-set2: [SKIP][313] ([Intel XE#307]) -> [SKIP][314] ([Intel XE#2423] / [i915#2575]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_display_modes@mst-extended-mode-negative.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-bmg: [FAIL][315] ([Intel XE#2882]) -> [SKIP][316] ([Intel XE#3007]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][317] ([Intel XE#455]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-bmg: [SKIP][319] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][321] ([Intel XE#2311]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][323] ([Intel XE#877]) -> [FAIL][324] ([Intel XE#2333]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][325] ([Intel XE#2333]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][327] ([Intel XE#651]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][329] ([Intel XE#653]) -> [SKIP][330] ([Intel XE#2136]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][331] ([Intel XE#2313]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][333] ([Intel XE#653]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][335] ([Intel XE#2387]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr2_su@page_flip-xrgb8888.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg2-set2: [SKIP][337] ([Intel XE#1122]) -> [SKIP][338] ([Intel XE#2136]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-xrgb8888.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][339] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][340] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr-dpms.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_psr@psr-dpms.html - shard-bmg: [SKIP][341] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2231]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr@psr-dpms.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at kms_psr@psr-dpms.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][343] -> [FAIL][344] ([Intel XE#2883]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-lnl-8/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][345] ([Intel XE#362]) -> [FAIL][346] ([Intel XE#1729]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_eudebug@basic-vm-bind-vm-destroy: - shard-bmg: [SKIP][347] ([Intel XE#2905]) -> [SKIP][348] ([Intel XE#1130]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-vm-destroy.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-vm-destroy.html - shard-dg2-set2: [SKIP][349] ([Intel XE#2905]) -> [SKIP][350] ([Intel XE#1130]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-vm-destroy.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-vm-destroy.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][351] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][352] ([Intel XE#1000]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-threads-large.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-1/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: [SKIP][353] ([Intel XE#2322]) -> [SKIP][354] ([Intel XE#1130]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt at xe_exec_fault_mode@twice-userptr: - shard-dg2-set2: [SKIP][355] ([Intel XE#288]) -> [SKIP][356] ([Intel XE#1130]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3609 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12380 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12380: 90a8244431e728b782ad30dfb12965174ff5b25b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12380/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 16:17:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 16:17:00 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/kms=5Fplane=5Fscal?= =?utf-8?q?ing=3A_Add_logs_to_skips?= In-Reply-To: <20250103103414.10731-1-pranay.samala@intel.com> References: <20250103103414.10731-1-pranay.samala@intel.com> Message-ID: <173592102018.2705020.15008137703335038509@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips URL : https://patchwork.freedesktop.org/series/143093/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15898_full -> IGTPW_12380_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12380_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12380_full, please notify your bug team (I915-ci-infra at 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_12380/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12380_full: ### IGT changes ### #### Possible regressions #### * igt at gem_eio@execbuf: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-5/igt at gem_eio@execbuf.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-4/igt at gem_eio@execbuf.html * igt at gem_linear_blits@normal: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-13/igt at gem_linear_blits@normal.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_linear_blits@normal.html * igt at kms_flip@blocking-wf_vblank at b-vga1: - shard-snb: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb2/igt at kms_flip@blocking-wf_vblank at b-vga1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb5/igt at kms_flip@blocking-wf_vblank at b-vga1.html #### Warnings #### * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][7] ([i915#9820]) -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html New tests --------- New tests have been introduced between CI_DRM_15898_full and IGTPW_12380_full: ### New IGT tests (2) ### * igt at gem_render_copy@linear-to-vebox-y-tiled at lmem0: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12380_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at api_intel_bb@object-reloc-keep-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +25 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-7/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-5/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-4/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#6335]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#6335]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_freq@sysfs: - shard-dg2: [PASS][28] -> [FAIL][29] ([i915#9561]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-1/igt at gem_ctx_freq@sysfs.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-3/igt at gem_ctx_freq@sysfs.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb7/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-5/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@kms: - shard-dg1: [PASS][37] -> [FAIL][38] ([i915#5784]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-18/igt at gem_eio@kms.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][39] ([i915#8898]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb4/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-9/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-3/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at gem_exec_reloc@basic-cpu-wc-noreloc.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +9 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +15 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +12 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) +1 other test abort [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk2/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-8/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [PASS][62] -> [TIMEOUT][63] ([i915#5493]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at gem_lmem_swapping@verify.html * igt at gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4565]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at gem_lmem_swapping@verify-ccs at lmem0.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_media_vme.html * igt at gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at gem_mmap@bad-offset.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-8/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +10 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-1/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gem_pwrite@basic-self.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][77] ([i915#12964]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@fail-invalid-protected-context: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#4270]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#13398]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-8/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12917] / [i915#12964]) +3 other tests timeout [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-4/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][82] +370 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk6/igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#8411]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4885]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_softpin@evict-snoop.html * igt at gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#3323]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3281] / [i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4958]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-1/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][96] +367 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb4/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#13356]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at gem_workarounds@suspend-resume-context.html - shard-rkl: [PASS][98] -> [DMESG-FAIL][99] ([i915#12964]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-4/igt at gem_workarounds@suspend-resume-context.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_workarounds@suspend-resume-context.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][100] -> [INCOMPLETE][101] ([i915#13356]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at gem_workarounds@suspend-resume-fd.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk4/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-9/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-no-display: - shard-tglu: NOTRUN -> [ABORT][108] ([i915#13010]) +1 other test abort [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][109] ([i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][110] -> [ABORT][111] ([i915#10887] / [i915#12817] / [i915#9820]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-5/igt at i915_module_load@reload-with-fault-injection.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#7178]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#7091]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#8399]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#6590]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: NOTRUN -> [FAIL][116] ([i915#12942]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [PASS][117] -> [FAIL][118] ([i915#12739] / [i915#3591]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#11681] / [i915#6621]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-3/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#11681]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][123] ([i915#9311]) +1 other test dmesg-warn [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at i915_selftest@mock at memory_region.html - shard-tglu-1: NOTRUN -> [DMESG-WARN][124] ([i915#9311]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#4817]) +1 other test incomplete [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk6/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#12454] / [i915#12712]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-dp-4-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#8709]) +11 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-dp-4-4-mc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#8709]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt at kms_async_flips@crc-atomic: - shard-dg1: NOTRUN -> [WARN][131] ([i915#13287]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][132] ([i915#13287]) +7 other tests crash [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][133] ([i915#13287]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-2.html * igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][134] ([i915#13287]) +7 other tests crash [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-4.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#10333]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-mtlp: [PASS][137] -> [FAIL][138] ([i915#11808] / [i915#5956]) +1 other test fail [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-3/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#5286]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#5286]) +11 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#5286]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][144] ([i915#5286]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][145] -> [FAIL][146] ([i915#5138]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3638]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6187]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +10 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6095]) +14 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-2/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#6095]) +34 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +69 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6095]) +104 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +128 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#6095]) +20 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#6095]) +163 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-a-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#12313]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#12313]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-3/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#3742]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#4087]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-3/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#7828]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#7828]) +9 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#7828]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#7828]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#7828]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-3/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7828]) +9 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_color@deep-color: - shard-dg2: [PASS][175] -> [SKIP][176] ([i915#3555]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_color@deep-color.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [TIMEOUT][177] ([i915#7173]) +1 other test timeout [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-9/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3116] / [i915#3299]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3299]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3299]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#9424]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7116] / [i915#7118]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555]) +8 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8814]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html - shard-dg1: NOTRUN -> [DMESG-WARN][193] ([i915#4423]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2: - shard-rkl: [PASS][194] -> [DMESG-WARN][195] ([i915#12964]) +36 other tests dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#13049]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#13049]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8814]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#13046] / [i915#5354]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#4103]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursor-vs-flip-legacy: - shard-dg1: [PASS][201] -> [DMESG-WARN][202] ([i915#4423]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at kms_cursor_legacy@cursor-vs-flip-legacy.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_cursor_legacy@cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][204] ([i915#2346]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9067]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9067]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#9067]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#9067]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9833]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#9723]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#9723]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9833]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555]) +6 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#8588]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#8588]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#8588]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3804]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3804]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#12402]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#12402]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#8812]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_dsc@dsc-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#4854]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-8/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][226] ([i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#4854]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#1839]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#9337]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9337]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-9/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#658]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#658]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#4881]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4881]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#8381]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#3637]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3637]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-1/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [PASS][241] -> [FAIL][242] ([i915#11989]) +3 other tests fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb4/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb7/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#9934]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9934]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9934]) +11 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3637]) +5 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][247] -> [DMESG-WARN][248] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-3/igt at kms_flip@absolute-wf_vblank-interruptible.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#8381]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@plain-flip-ts-check at d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][250] ([i915#11989]) +7 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-7/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#2672]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2672]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#2587] / [i915#2672] / [i915#3555]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#5354]) +27 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [PASS][262] -> [SKIP][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][264] +39 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8708]) +17 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [PASS][266] -> [FAIL][267] ([i915#6880]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#5439]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-6/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][269] +30 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#1825]) +58 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#8708]) +20 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][272] +38 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][273] +93 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#9766]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9766]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#3458]) +15 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#3458]) +17 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3023]) +36 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#1825]) +7 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8708]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg2: [PASS][281] -> [SKIP][282] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_hdr@bpc-switch-dpms.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12713]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#12713]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-2/igt at kms_hdr@invalid-metadata-sizes.html - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-3/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-color: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#13389]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#13388]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#13388]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#10656]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#12388]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#12394]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12339]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#4816]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#1839]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#6301]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-3/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#6301]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][302] ([i915#13026]) +1 other test incomplete [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][303] ([i915#10647] / [i915#12177]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][304] ([i915#10647]) +1 other test fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8821]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-3/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8806]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#13046] / [i915#5354] / [i915#9423]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#12247]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12247]) +12 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#9423]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247]) +9 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#12247] / [i915#6953]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#6953]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-4/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12247]) +5 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-4/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#6953] / [i915#9423]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247]) +7 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#5354]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9812]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12343]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-5/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#3828]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-18/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#3828]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#3361]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-14/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#3361]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#9340]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][327] -> [SKIP][328] ([i915#9519]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-7/igt at kms_pm_rpm@dpms-lpsp.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][329] ([i915#8717]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9519]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#9519]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#6524] / [i915#6805]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-1/igt at kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][333] ([i915#6524]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-8/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#6524]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][335] ([i915#11520]) +10 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#11520]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12316]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-1/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#11520]) +12 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][339] ([i915#11520]) +7 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#11520]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#11520]) +5 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#11520]) +6 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#9683]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#9683]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9683]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +27 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-6/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr-primary-render: - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#9732]) +8 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9732]) +21 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_psr@fbc-psr2-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9688]) +6 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-7/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +24 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#4077] / [i915#9688]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-1/igt at kms_psr@psr-primary-mmap-gtt at edp-1.html * igt at kms_psr@psr2-suspend: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +15 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9685]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-rkl: NOTRUN -> [DMESG-WARN][354] ([i915#12964]) +31 other tests dmesg-warn [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#5289]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#5289]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#5190]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#5289]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#12755]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#3555]) +7 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-10/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][361] ([i915#13179]) +1 other test abort [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#8809]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-4/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#3555]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][364] ([IGT#160]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-1/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][365] ([i915#10959]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#8623]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][367] ([i915#8623]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-5/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][368] +3 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#8808] / [i915#9906]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-8/igt at kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][370] ([i915#9906]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-8/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#9906]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-mtlp: [PASS][372] -> [FAIL][373] ([i915#10393]) +1 other test fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-3/igt at kms_vrr@negative-basic.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#9906]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#9906]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#2437]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#2437]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-17/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][379] ([i915#2437]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-2/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#2435]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#8850]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait at rcs0: - shard-dg2: NOTRUN -> [SKIP][382] +13 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-5/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][383] ([i915#13341]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk6/igt at perf_pmu@rc6-suspend.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#3291] / [i915#3708]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][385] ([i915#3291] / [i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-3/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#3708]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-12/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-7/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#9917]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-11/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][389] ([i915#9917]) +2 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-2/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-mtlp: NOTRUN -> [FAIL][390] ([i915#12910]) +9 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-mtlp-6/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][391] ([i915#12910]) +9 other tests fail [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][392] ([i915#4818]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg1-13/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [DMESG-WARN][393] ([i915#12964]) -> [PASS][394] +31 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-7/igt at gem_ctx_shared@exec-single-timeline at vcs0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-7/igt at gem_ctx_shared@exec-single-timeline at vcs0.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][395] ([i915#13363]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-8/igt at gem_eio@kms.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-6/igt at gem_eio@kms.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][397] ([i915#11713]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-4/igt at gem_exec_big@single.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-tglu-3/igt at gem_exec_big@single.html * igt at gem_exec_endless@dispatch at ccs0: - shard-dg2: [INCOMPLETE][399] -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-3/igt at gem_exec_endless@dispatch at ccs0.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-4/igt at gem_exec_endless@dispatch at ccs0.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [INCOMPLETE][401] ([i915#11441] / [i915#13304]) -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-6/igt at gem_exec_suspend@basic-s0 at smem.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][403] -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-11/igt at gem_lmem_swapping@verify-random.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-dg2-2/igt at gem_lmem_swapping@verify-random.html * igt at gem_workarounds@suspend-resume: - shard-rkl: [INCOMPLETE][405] ([i915#13356]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-5/igt at gem_workarounds@suspend-resume.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-4/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][407] ([i915#12964]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at gem_workarounds@suspend-resume-fd.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-rkl-6/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_module_load@load: - shard-glk: ([PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [DMESG-WARN][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432]) ([i915#118]) -> ([PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at i915_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at i915_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk1/igt at i915_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk2/igt at i915_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk9/igt at i915_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk2/igt at i915_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk9/igt at i915_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk3/igt at i915_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk8/igt at i915_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk3/igt at i915_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk8/igt at i915_module_load@load.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk4/igt at i915_module_load@load.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk4/igt at i915_module_load@load.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/shard-glk5/igt at i915_module_load@load.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12380/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 16:37:22 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 16:37:22 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/igt=5Fkms=3A_Backup_con?= =?utf-8?q?nector_modes_before_sorting_=28rev2=29?= In-Reply-To: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: <173592224200.2713015.16784879491014743959@b555e5b46a47> == Series Details == Series: lib/igt_kms: Backup connector modes before sorting (rev2) URL : https://patchwork.freedesktop.org/series/142834/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12384_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_8174 -> IGTPW_12384 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12384: def1e5a7112e4f5db9bc4f92f839e5858bcc3531 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 16:39:09 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 16:39:09 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/igt=5Fkms=3A_Backup_c?= =?utf-8?q?onnector_modes_before_sorting_=28rev2=29?= In-Reply-To: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: <173592234981.2713927.11197183690091228873@b555e5b46a47> == Series Details == Series: lib/igt_kms: Backup connector modes before sorting (rev2) URL : https://patchwork.freedesktop.org/series/142834/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12384 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12384 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][1] ([i915#13393]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/bat-arlh-2/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12384 * Linux: CI_DRM_15892 -> CI_DRM_15898 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15898: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12384: def1e5a7112e4f5db9bc4f92f839e5858bcc3531 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 17:11:08 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 17:11:08 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Ffbcon?= =?utf-8?q?=5Ffbt=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173592426821.2723330.6385930985692414841@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141281/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15898_full -> IGTPW_12382_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12382_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12382_full, please notify your bug team (I915-ci-infra at 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_12382/index.html Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12382_full: ### IGT changes ### #### Possible regressions #### * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_color@ctm-0-25 at pipe-a-edp-1: - shard-mtlp: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-2/igt at kms_color@ctm-0-25 at pipe-a-edp-1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at kms_color@ctm-0-25 at pipe-a-edp-1.html #### Warnings #### * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][4] ([i915#10887]) -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at i915_module_load@reload-with-fault-injection.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-1/igt at i915_module_load@reload-with-fault-injection.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at i915_pm_rpm@debugfs-forcewake-user: - {shard-dg2-9}: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-9/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at kms_pipe_crc_basic@nonblocking-crc at pipe-a-dp-4: - {shard-dg2-9}: NOTRUN -> [ABORT][7] +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-9/igt at kms_pipe_crc_basic@nonblocking-crc at pipe-a-dp-4.html New tests --------- New tests have been introduced between CI_DRM_15898_full and IGTPW_12382_full: ### New IGT tests (1) ### * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12382_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at api_intel_bb@object-reloc-keep-cache.html * igt at core_hotunplug@unbind-rebind: - shard-dg1: [PASS][11] -> [DMESG-WARN][12] ([i915#4391] / [i915#4423]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at core_hotunplug@unbind-rebind.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at core_hotunplug@unbind-rebind.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +26 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-10/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#6335]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#6335]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-6/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@kms: - shard-dg1: [PASS][31] -> [FAIL][32] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-18/igt at gem_eio@kms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-mtlp: [PASS][33] -> [ABORT][34] ([i915#13193]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-2/igt at gem_eio@unwedge-stress.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-4/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-6/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#4525]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-8/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-3/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-7/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-4/igt at gem_exec_reloc@basic-cpu-wc-noreloc.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +10 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +17 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-6/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-scanout: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_suspend@basic-s3: - shard-rkl: [PASS][51] -> [DMESG-FAIL][52] ([i915#12964]) +2 other tests dmesg-fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at gem_exec_suspend@basic-s3.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][53] ([i915#13196]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk8/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#2190]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][58] ([i915#2190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk1/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [PASS][62] -> [TIMEOUT][63] ([i915#5493]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at gem_lmem_swapping@verify-ccs at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at gem_media_vme.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +8 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-5/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@medium-copy-odd: - shard-rkl: [PASS][72] -> [DMESG-WARN][73] ([i915#12917] / [i915#12964]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-4/igt at gem_mmap_gtt@medium-copy-odd.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at gem_mmap_gtt@medium-copy-odd.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +7 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-1/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3282]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][79] ([i915#2658]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk7/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][81] ([i915#2658]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12964]) +1 other test timeout [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#13398]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-10/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12917] / [i915#12964]) +2 other tests timeout [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-tglu: [PASS][85] -> [SKIP][86] ([i915#4270]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-10/igt at gem_pxp@protected-raw-src-copy-not-readible.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-6/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4270]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#8428]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4885]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@noreloc-s3: - shard-glk: [PASS][93] -> [INCOMPLETE][94] ([i915#13306]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at gem_softpin@noreloc-s3.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk6/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][95] ([i915#13449]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#3323]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][98] ([i915#3323]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#3281] / [i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4958]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][105] +357 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb4/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#13356]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk6/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at gen9_exec_parse@batch-without-end.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-6/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#2856]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-6/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][113] -> [ABORT][114] ([i915#12817] / [i915#9820]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-5/igt at i915_module_load@reload-with-fault-injection.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#7091]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#8399]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-7/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#6590]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][118] ([i915#2681]) +1 other test warn [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-fence.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-3/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#11681]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][122] ([i915#1982] / [i915#9311]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk3/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][123] ([i915#9311]) +1 other test dmesg-warn [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at i915_selftest@mock at memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][124] ([i915#9311]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk3/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk9/igt at i915_suspend@sysfs-reader.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-6/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#8709]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#8709]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#8709]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-3-y-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#8709]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@crc: - shard-tglu-1: NOTRUN -> [INCOMPLETE][133] ([i915#13287] / [i915#9878]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][134] ([i915#13287]) +7 other tests crash [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [INCOMPLETE][135] ([i915#13287]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][136] ([i915#13287]) +1 other test incomplete [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at kms_async_flips@crc at pipe-a-hdmi-a-2.html * igt at kms_async_flips@crc at pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][137] ([i915#13287]) +3 other tests crash [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_async_flips@crc at pipe-d-hdmi-a-4.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12967] / [i915#6228]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#10333]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][140] ([i915#1769]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk6/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#5286]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#5286]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +12 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#5286]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3638]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3638]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6187]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-6/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5190]) +14 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6095]) +19 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6095]) +14 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-2/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#6095]) +127 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#6095]) +158 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +84 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +130 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#6095]) +16 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#12313]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#12313]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#12313]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#7828]) +11 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#7828]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#7828]) +15 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#7828]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#7828]) +9 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#9979]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3116] / [i915#3299]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-7/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3299]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3116]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9424]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-9/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#7118] / [i915#9424]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#7116] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#13049]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-dg1: [PASS][184] -> [DMESG-WARN][185] ([i915#4423]) +1 other test dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-14/igt at kms_cursor_crc@cursor-onscreen-128x42.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +11 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) +6 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#13049]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8814]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#13049]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#13049]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-7/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8814]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13046] / [i915#5354]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#4103]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#9809]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-snb: [PASS][198] -> [SKIP][199] +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb4/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-mtlp: [PASS][200] -> [FAIL][201] ([i915#2346]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-3/igt at kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-8/igt at kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#9067]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#9067]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#9067]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#9067]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-8/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9723]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9723]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#9723]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#9833]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3555]) +8 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8588]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][213] ([i915#8588]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#8588]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3804]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3804]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#1257]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#12402]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#12402]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-9/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8812]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_dsc@dsc-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#4854]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-4/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4854]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#4854]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9337]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#9337]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-10/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][232] ([i915#658]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#4881]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][235] ([i915#4881]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +14 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#8381]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-6/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3637]) +4 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-7/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3637]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-5/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3637]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9934]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#9934]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2: - shard-rkl: [PASS][243] -> [DMESG-WARN][244] ([i915#12964]) +37 other tests dmesg-warn [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-5/igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-mtlp: [PASS][245] -> [FAIL][246] ([i915#11989]) +4 other tests fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-3/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-5/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [PASS][247] -> [FAIL][248] ([i915#11989]) +3 other tests fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-2/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-2/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#8381]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@plain-flip-ts-check: - shard-rkl: NOTRUN -> [FAIL][250] ([i915#11989]) +1 other test fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [PASS][251] -> [FAIL][252] ([i915#11989]) +1 other test fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb5/igt at kms_flip@plain-flip-ts-check-interruptible.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb4/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: NOTRUN -> [FAIL][253] ([i915#11989]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#2672]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2672]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) +5 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +7 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#2587] / [i915#2672]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: [PASS][267] -> [FAIL][268] ([i915#6880]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#5354]) +31 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][270] +38 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#8708]) +18 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#5439]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][273] +43 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#8708]) +21 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][275] +37 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][276] +94 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#10433] / [i915#3458]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#9766]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#9766]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-12/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#3458]) +14 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3023]) +43 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +17 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#1825]) +8 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#1825]) +69 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#8708]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-6/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_hdr@bpc-switch-dpms.html - shard-dg2: [PASS][287] -> [SKIP][288] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_hdr@bpc-switch-dpms.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12713]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][290] ([i915#12713]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_hdr@invalid-metadata-sizes.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-1/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#13388]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#13388]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-7/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#10656]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#10656]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12388]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#12394]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#12339]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-9/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#4816]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#1839]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#1839]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#6301]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][306] ([i915#13026]) +1 other test incomplete [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][307] ([i915#10647] / [i915#12177]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk3/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][308] ([i915#10647]) +1 other test fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk3/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8821]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#13046] / [i915#5354] / [i915#9423]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247]) +18 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#12247]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#12247]) +12 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-4/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#12247]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12247]) +5 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953] / [i915#9423]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12247]) +3 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#5354]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][322] ([i915#9812]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12343]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9812]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#9685]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#3828]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][328] ([i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][329] ([i915#9295]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#3361]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#3361]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#9340]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][333] -> [SKIP][334] ([i915#9519]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-7/igt at kms_pm_rpm@dpms-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-6/igt at kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#9519]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][336] ([i915#8717]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#6524] / [i915#6805]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-3/igt at kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#6524]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-9/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#6524]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][341] ([i915#11520]) +7 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#11520]) +9 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12316]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-2/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +4 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#11520]) +14 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][346] ([i915#11520]) +8 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk5/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#11520]) +6 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#11520]) +8 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#9683]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +19 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-14/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#9732]) +23 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-2/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9688]) +6 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +37 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_psr@pr-sprite-mmap-gtt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +28 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#4077] / [i915#9688]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-2/igt at kms_psr@psr-primary-mmap-gtt at edp-1.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9732]) +8 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-1/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][357] +493 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk1/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#5289]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#5289]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#5289]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#12755]) +2 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#3555]) +8 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-10/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#8809]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-4/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][364] ([IGT#160]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][365] ([i915#10959]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk5/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#8623]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#8623]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8623]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][369] +4 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-4/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-modeset-hang: - shard-snb: NOTRUN -> [INCOMPLETE][370] ([i915#12276]) +1 other test incomplete [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-snb5/igt at kms_vblank@ts-continuation-modeset-hang.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][371] ([i915#12276]) +1 other test incomplete [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk4/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#8808] / [i915#9906]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-1/igt at kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][373] ([i915#9906]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-7/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#9906]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-5/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#9906]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#2437]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][378] ([i915#2437]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#2437]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][380] ([i915#2437]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-glk1/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#2434]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-5/igt at perf@mi-rpc.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#2435]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][383] -> [FAIL][384] ([i915#11943]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-11/igt at perf_pmu@all-busy-idle-check-all.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][385] -> [FAIL][386] ([i915#11943]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-12/igt at perf_pmu@all-busy-idle-check-all.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-13/igt at perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][387] -> [FAIL][388] ([i915#11943]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-6/igt at perf_pmu@all-busy-idle-check-all.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-6/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-double-start at vcs0: - shard-mtlp: [PASS][389] -> [FAIL][390] ([i915#4349]) +1 other test fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-7/igt at perf_pmu@busy-double-start at vcs0.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-6/igt at perf_pmu@busy-double-start at vcs0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-rkl: NOTRUN -> [DMESG-WARN][391] ([i915#12964]) +41 other tests dmesg-warn [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#8850]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][393] ([i915#8850]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-2/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait at rcs0: - shard-dg2: NOTRUN -> [SKIP][394] +16 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-11/igt at perf_pmu@event-wait at rcs0.html * igt at prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#3708]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-7/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#3291] / [i915#3708]) +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-10/igt at prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3291] / [i915#3708]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at prime_vgem@basic-write.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#9917]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-4/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][399] ([i915#9917]) +2 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-3/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][400] ([i915#9917]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-18/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][401] ([i915#12910]) +9 other tests fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-5/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][402] ([i915#12910]) +9 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-3/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][403] ([i915#4818]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg1-17/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [DMESG-WARN][404] ([i915#12964]) -> [PASS][405] +32 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-7/igt at gem_ctx_shared@exec-single-timeline at vcs0.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-7/igt at gem_ctx_shared@exec-single-timeline at vcs0.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][406] ([i915#13363]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-8/igt at gem_eio@kms.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-9/igt at gem_eio@kms.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][408] ([i915#11713]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-4/igt at gem_exec_big@single.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-tglu-9/igt at gem_exec_big@single.html * igt at gem_exec_endless@dispatch at ccs0: - shard-dg2: [INCOMPLETE][410] -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-3/igt at gem_exec_endless@dispatch at ccs0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at gem_exec_endless@dispatch at ccs0.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [INCOMPLETE][412] ([i915#11441] / [i915#13304]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-6/igt at gem_exec_suspend@basic-s0 at smem.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-8/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][414] -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-11/igt at gem_lmem_swapping@verify-random.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-dg2-2/igt at gem_lmem_swapping@verify-random.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][416] ([i915#10729]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_workarounds@suspend-resume: - shard-rkl: [INCOMPLETE][418] ([i915#13356]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-5/igt at gem_workarounds@suspend-resume.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/shard-rkl-1/igt at gem_workarounds@suspend-resume.html * igt at i915_module_load@load: - shard-glk: ([PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [DMESG-WARN][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443]) ([i915#118]) -> ([PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12382/index.html From jonathan.cavitt at intel.com Fri Jan 3 17:49:42 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Fri, 3 Jan 2025 17:49:42 +0000 Subject: [PATCH v1] tests/intel: Enhance the wedged_mode sysfs support In-Reply-To: <20250103124115.765794-1-pravalika.gurram@intel.com> References: <20250103124115.765794-1-pravalika.gurram@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Pravalika Gurram Sent: Friday, January 3, 2025 4:41 AM To: igt-dev at lists.freedesktop.org Cc: Gurram, Pravalika Subject: [PATCH v1] tests/intel: Enhance the wedged_mode sysfs support > > 1. Added support to read the wedged_mode sysfs > 2. Handle the -ETIMEDOUT return value during > forcewake_all sysfs open > > Signed-off-by: Pravalika Gurram > --- > tests/intel/xe_debugfs.c | 2 +- > tests/intel/xe_wedged.c | 2 ++ > 2 files changed, 3 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > index bcbb5036a..3a83868ba 100644 > --- a/tests/intel/xe_debugfs.c > +++ b/tests/intel/xe_debugfs.c > @@ -268,7 +268,7 @@ test_forcewake(int fd) > { > int handle = igt_debugfs_open(fd, "forcewake_all", O_WRONLY); > > - igt_assert_neq(handle, -1); > + igt_assert_lte(0, handle); > close(handle); > } > > diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c > index 613d571b4..d4acd5f7f 100644 > --- a/tests/intel/xe_wedged.c > +++ b/tests/intel/xe_wedged.c > @@ -208,6 +208,7 @@ igt_main > struct drm_xe_engine_class_instance *hwe; > int fd; > char pci_slot[NAME_MAX]; > + char str[150]; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -228,6 +229,7 @@ igt_main > igt_assert_eq(simple_ioctl(fd), 0); > xe_for_each_engine(fd, hwe) > simple_exec(fd, hwe); > + igt_debugfs_read(fd, "wedged_mode", str); I don't think the system reports if this read fails. AFAICT, while an error value is reported and returned by igt_debugfs_simple_read in the execution stack, the error value is not passed along any further than that, and an error in this function otherwise does not trigger a test failure or warning. IMO, it would probably be for the best if we put some form of assertion here. Maybe something like: """ igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from debugfs!\n"); """ There's also an argument to be made that attempting to read wedged_mode and asserting its existence should be handled by a separate test, but I'll leave that up to your discretion. Other than that, this change is acceptable. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > } > > igt_subtest_f("wedged-at-any-timeout") { > -- > 2.34.1 > > From patchwork at emeril.freedesktop.org Fri Jan 3 18:17:51 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 18:17:51 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel=3A_Enhance_t?= =?utf-8?q?he_wedged=5Fmode_sysfs_support?= In-Reply-To: <20250103124115.765794-1-pravalika.gurram@intel.com> References: <20250103124115.765794-1-pravalika.gurram@intel.com> Message-ID: <173592827186.2747044.2246386439728915275@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support URL : https://patchwork.freedesktop.org/series/143094/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15898_full -> IGTPW_12383_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12383_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12383_full, please notify your bug team (I915-ci-infra at 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_12383/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12383_full: ### IGT changes ### #### Possible regressions #### * igt at gem_eio@in-flight-contexts-1us: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-6/igt at gem_eio@in-flight-contexts-1us.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-2/igt at gem_eio@in-flight-contexts-1us.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-snb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb7/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html #### Warnings #### * igt at gem_exec_big@single: - shard-tglu: [ABORT][5] ([i915#11713]) -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-4/igt at gem_exec_big@single.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-5/igt at gem_exec_big@single.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][7] ([i915#9820]) -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at i915_pm_rpm@system-suspend-devices: - {shard-dg2-9}: NOTRUN -> [ABORT][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-9/igt at i915_pm_rpm@system-suspend-devices.html New tests --------- New tests have been introduced between CI_DRM_15898_full and IGTPW_12383_full: ### New IGT tests (2) ### * igt at gem_render_copy@linear-to-vebox-y-tiled at lmem0: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12383_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +33 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-10/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb4/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-5/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-rkl: [PASS][28] -> [DMESG-WARN][29] ([i915#12964]) +28 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at gem_eio@in-flight-suspend.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg1: [PASS][30] -> [FAIL][31] ([i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-18/igt at gem_eio@kms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][32] ([i915#8898]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@full-late-pulse: - shard-dg1: NOTRUN -> [FAIL][35] ([i915#13364]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-2/igt at gem_exec_reloc@basic-cpu-wc-noreloc.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +13 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) +1 other test abort [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][54] ([i915#2190]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk4/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at gem_lmem_swapping@heavy-verify-random-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [PASS][59] -> [TIMEOUT][60] ([i915#5493]) +1 other test timeout [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at gem_media_vme.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-2/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-3/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at gem_partial_pwrite_pread@write-uncached.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at gem_pread@exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][71] ([i915#12964]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#13398]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12917] / [i915#12964]) +3 other tests timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-tglu: [PASS][77] -> [SKIP][78] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-10/igt at gem_pxp@reject-modify-context-protection-on.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-8/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-3/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-1/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@noreloc-s3: - shard-glk: [PASS][84] -> [INCOMPLETE][85] ([i915#13306]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at gem_softpin@noreloc-s3.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk6/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#3323]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3281] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4958]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at gem_userptr_blits@sd-probe.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][94] +379 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb4/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#13356]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at gem_workarounds@suspend-resume-fd.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk9/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-1/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][103] -> [ABORT][104] ([i915#9820]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#7178]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#7091]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-5/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [PASS][108] -> [INCOMPLETE][109] ([i915#12455]) +1 other test incomplete [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-3/igt at i915_pm_freq_api@freq-suspend at gt0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_rpm@gem-idle: - shard-rkl: [PASS][110] -> [SKIP][111] ([i915#13328]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-2/igt at i915_pm_rpm@gem-idle.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at i915_pm_rpm@gem-idle.html * igt at i915_pm_rpm@gem-pread: - shard-dg1: [PASS][112] -> [DMESG-WARN][113] ([i915#4423]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at i915_pm_rpm@gem-pread.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at i915_pm_rpm@gem-pread.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#12797]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#11681] / [i915#6621]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-6/igt at i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#11681] / [i915#6621]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-1/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#11681]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#6245]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at i915_query@hwconfig_table.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][120] ([i915#9311]) +1 other test dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk3/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at i915_selftest@mock at memory_region.html - shard-tglu: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-8/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#4817]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk7/igt at i915_suspend@sysfs-reader.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#7707]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#8709]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#8709]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt at kms_async_flips@crc-atomic: - shard-dg1: NOTRUN -> [WARN][128] ([i915#13287]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][129] ([i915#13287]) +7 other tests crash [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][130] ([i915#13287]) +3 other tests crash [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_async_flips@crc-atomic at pipe-c-hdmi-a-4.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#12967] / [i915#6228]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#10333]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-1/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#1769] / [i915#3555]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][135] ([i915#1769]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#5286]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +7 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5286]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#5286]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3638]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3638]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5190]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +9 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-1/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#6095]) +100 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6095]) +59 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6095]) +44 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#6095]) +16 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][155] ([i915#12796]) +2 other tests incomplete [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk5/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#12313]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#10307] / [i915#6095]) +174 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#12313]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#12313]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-8/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#6095]) +163 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3742]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7828]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#7828]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#7828]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#7828]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#7828]) +15 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7828]) +8 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_content_protection@atomic-dpms: - shard-snb: NOTRUN -> [INCOMPLETE][168] ([i915#8816]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb4/igt at kms_content_protection@atomic-dpms.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#7118] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3116] / [i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3116]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [TIMEOUT][175] ([i915#7173]) +1 other test timeout [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9424]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#7116] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +10 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][184] -> [DMESG-WARN][185] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-64x21.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-64x21.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#13049]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8814]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3555]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-8/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8814]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#4103]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#9809]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-snb: [PASS][197] -> [SKIP][198] +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb5/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9067]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9067]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#9067]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#4103]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#9833]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9723]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9723]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#9723]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-10/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9833]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#8588]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#8588]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-4/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#1257]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#8812]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4854]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-8/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4854]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#4854]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#1839]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#1839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#9337]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#9337]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#658]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#658]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#658]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#4881]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][228] ([i915#4881]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-3/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#9934]) +10 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8381]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +5 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-10/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3637]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-2/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3637]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][236] -> [FAIL][237] ([i915#11989]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-1/igt at kms_flip@blocking-wf_vblank.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-1/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][238] ([i915#11989]) +2 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-6/igt at kms_flip@blocking-wf_vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-snb: [PASS][239] -> [FAIL][240] ([i915#11989]) +3 other tests fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-snb2/igt at kms_flip@flip-vs-absolute-wf_vblank.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb4/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#8381]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-panning-vs-hang at d-hdmi-a4: - shard-dg1: NOTRUN -> [INCOMPLETE][242] ([i915#6113]) +1 other test incomplete [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_flip@flip-vs-panning-vs-hang at d-hdmi-a4.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-dg2: [PASS][243] -> [FAIL][244] ([i915#11989]) +3 other tests fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-3/igt at kms_flip@wf_vblank-ts-check-interruptible.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#2672]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672] / [i915#3555]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][257] +43 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#5354]) +22 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#8708]) +21 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [PASS][260] -> [FAIL][261] ([i915#6880]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][262] +33 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#8708]) +21 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][264] +53 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][265] +87 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9766]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-7/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#9766]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3458]) +12 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3023]) +34 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3458]) +15 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#1825]) +7 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1825]) +48 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8708]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12713]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-6/igt at kms_hdr@invalid-metadata-sizes.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#13388]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_histogram@global-basic.html - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#13388]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_histogram@global-basic.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#13388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#10656]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#10656]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#12388]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#12394]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#12339]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#1839]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][290] ([i915#1839]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#6301]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][292] ([i915#6301]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][293] ([i915#10647] / [i915#12169]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk5/igt at kms_plane_alpha_blend@alpha-opaque-fb.html * igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][294] ([i915#10647]) +1 other test fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk5/igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-2-size-256: - shard-rkl: NOTRUN -> [DMESG-WARN][295] ([i915#12964]) +28 other tests dmesg-warn [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-2-size-256.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8821]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8806]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#13046] / [i915#5354] / [i915#9423]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg1: NOTRUN -> [DMESG-WARN][299] ([i915#4423]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#12247]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-7/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#12247]) +11 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#12247]) +18 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12247]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#6953]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#12247]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12247] / [i915#6953] / [i915#9423]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#12247]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#5354]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9812]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-8/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#12343]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12343]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#9812]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#9685]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9685]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#3828]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#3828]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][318] ([i915#3828]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#3361]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-14/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#4281]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#9340]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#9519]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#9519]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][324] -> [SKIP][325] ([i915#9519]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9519]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][327] ([i915#10553]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk3/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#6524] / [i915#6805]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#6524]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#6524]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#11520]) +8 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-4/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#12316]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#11520]) +7 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#11520]) +11 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][335] ([i915#11520]) +8 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk5/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#11520]) +6 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#11520]) +6 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][338] ([i915#11520]) +10 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb5/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#9683]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-3/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#9732]) +21 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-2/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +25 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#4077] / [i915#9688]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at kms_psr@psr-primary-mmap-gtt at edp-1.html * igt at kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9732]) +12 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +31 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at kms_psr@psr2-sprite-mmap-cpu.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][347] +422 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk3/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#9732]) +16 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-12/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#9685]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#5289]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#5289]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#12755] / [i915#5190]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#12755]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#3555]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][355] ([i915#13179]) +1 other test abort [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-snb2/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8809]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-8/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][357] ([IGT#160]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#8623]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#8623]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#8623]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][361] ([i915#8623]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][362] +3 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-5/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][363] ([i915#12276]) +3 other tests incomplete [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk5/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#8808] / [i915#9906]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-8/igt at kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][365] ([i915#9906]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-5/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][366] ([i915#9906]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#3555] / [i915#9906]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#9906]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][369] ([i915#2437]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-10/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][370] ([i915#2437]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#2437] / [i915#9412]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][372] ([i915#2437]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][373] ([i915#2437]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk1/igt at kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#2437]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#2434]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-10/igt at perf@mi-rpc.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#2435]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy: - shard-dg1: NOTRUN -> [FAIL][377] ([i915#4349]) +1 other test fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at perf_pmu@busy.html * igt at perf_pmu@busy at vecs1: - shard-dg2: [PASS][378] -> [FAIL][379] ([i915#4349]) +1 other test fail [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at perf_pmu@busy at vecs1.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at perf_pmu@busy at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#8850]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#8850]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-4/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait at rcs0: - shard-dg2: NOTRUN -> [SKIP][382] +10 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-11/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@most-busy-idle-check-all: - shard-dg2: NOTRUN -> [FAIL][383] ([i915#11943]) +1 other test fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at perf_pmu@most-busy-idle-check-all.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-mtlp: [PASS][384] -> [FAIL][385] ([i915#11943]) +2 other tests fail [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-6/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-4/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][386] ([i915#13341]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk2/igt at perf_pmu@rc6-suspend.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3291] / [i915#3708]) +2 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-1/igt at prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-2/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#3708]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-18/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#3708]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-4/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#9917]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][392] ([i915#9917]) +2 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-3/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][393] ([i915#9917]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-13/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][394] ([i915#12910]) +9 other tests fail [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-9/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][395] ([i915#12910]) +9 other tests fail [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-mtlp-3/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][396] ([i915#12910]) +8 other tests fail [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-1/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-2.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][397] ([i915#4818]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg1-17/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][398] ([i915#7297]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-5/igt at gem_ccs@suspend-resume.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][400] ([i915#12392] / [i915#7297]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-5/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-8/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [DMESG-WARN][402] ([i915#12964]) -> [PASS][403] +35 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-7/igt at gem_ctx_shared@exec-single-timeline at vcs0.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-5/igt at gem_ctx_shared@exec-single-timeline at vcs0.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][404] ([i915#13363]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-8/igt at gem_eio@kms.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-tglu-3/igt at gem_eio@kms.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][406] -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-11/igt at gem_lmem_swapping@verify-random.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-dg2-7/igt at gem_lmem_swapping@verify-random.html * igt at gem_workarounds@suspend-resume: - shard-rkl: [INCOMPLETE][408] ([i915#13356]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-5/igt at gem_workarounds@suspend-resume.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-rkl-6/igt at gem_workarounds@suspend-resume.html * igt at i915_module_load@load: - shard-glk: ([PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [DMESG-WARN][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433]) ([i915#118]) -> ([PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk8/igt at i915_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk2/igt at i915_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk3/igt at i915_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk5/igt at i915_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk9/igt at i915_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk6/igt at i915_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/shard-glk7/igt at i915_module_load@load.html == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12383/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 18:24:59 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 18:24:59 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173592869954.2749888.12437698234310323462@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141312/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12381_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12381_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12381_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12381_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-dp-4.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_flip@flip-vs-suspend at c-dp2: - shard-bmg: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at c-dp2.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at kms_flip@flip-vs-suspend at c-dp2.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][6] +2 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_plane_lowres@tiling-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][7] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_plane_lowres@tiling-4.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][10] ([Intel XE#3865]) -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html Known issues ------------ Here are the changes found in XEIGTPW_12381_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@write: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at fbdev@write.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at fbdev@write.html - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at fbdev@write.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at fbdev@write.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3157]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#3719]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#3767]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-dp-5-4-rc-ccs-cc.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3279]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3658]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1407]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +127 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3862]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#1727]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#1727] / [Intel XE#3113]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +8 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#373]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#306]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2423] / [i915#2575]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2252]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_content_protection@atomic-dpms at pipe-a-dp-5.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#3278]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#3407]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_content_protection@lic-type-0 at pipe-a-dp-5.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2341]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1424]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#455]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2320]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#877]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2286]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3383]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_feature_discovery@display: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_feature_discovery@display.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_feature_discovery@display.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#2882] / [Intel XE#3288]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#3288] / [Intel XE#3321]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][72] -> [FAIL][73] ([Intel XE#3321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3879]) +2 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#886]) +3 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-dp2: - shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#2882]) +6 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@flip-vs-absolute-wf_vblank at a-dp2.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_flip@flip-vs-absolute-wf_vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#301]) +3 other tests fail [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at b-dp2: - shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#3321]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at b-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#301]) +5 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at b-dp5.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#3879]) +3 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp2: - shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#3664]) +1 other test fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at d-dp2.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-dg2-set2: [PASS][88] -> [INCOMPLETE][89] ([Intel XE#2049]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_flip@plain-flip-ts-check-interruptible.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2136]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1401] / [Intel XE#1745]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +16 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#651]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-1/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#2333]) +8 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#651]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +17 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2352]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +25 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1469]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1503]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#3898]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2927]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2927]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_lease@setcrtc-implicit-plane: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#3007]) +10 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_lease@setcrtc-implicit-plane.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_lease@setcrtc-implicit-plane.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][113] -> [FAIL][114] ([Intel XE#616]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_cursor@viewport.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +9 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#718]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#908]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2499]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2893]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1406]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#3414]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2413]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1435]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#362]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2450]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-bmg: [PASS][137] -> [INCOMPLETE][138] ([Intel XE#3864]) +1 other test incomplete [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-dpms-suspend.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#2159]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#1499]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1499]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#756]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#756]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1091] / [Intel XE#2849]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][146] -> [INCOMPLETE][147] ([Intel XE#2771] / [Intel XE#3918]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at xe_ccs@suspend-resume.html * igt at xe_ccs@suspend-resume at tile4-compressed-compfmt0-system-vram01: - shard-bmg: [PASS][148] -> [INCOMPLETE][149] ([Intel XE#3918]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume at tile4-compressed-compfmt0-system-vram01.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at xe_ccs@suspend-resume at tile4-compressed-compfmt0-system-vram01.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][150] ([Intel XE#3869]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_drm_fdinfo@utilization-others-idle: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1130]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at xe_drm_fdinfo@utilization-others-idle.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-3/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#3889]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2905]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#688]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-5/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][157] ([Intel XE#2364]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][158] ([Intel XE#1600]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1392]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2322]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@no-exec-userptr-invalidate: - shard-dg2-set2: [PASS][161] -> [SKIP][162] ([Intel XE#1130]) +22 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_basic@no-exec-userptr-invalidate.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at xe_exec_basic@no-exec-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#288]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1192]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-2/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#378]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1420] / [Intel XE#2838]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2284]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#584]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-6/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][171] -> [ABORT][172] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_pm@s4-vm-bind-userptr.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#579]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#944]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#944]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-466/igt at xe_query@multigpu-query-topology.html * igt at xe_query@query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#1130]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at xe_query@query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#3342]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [PASS][178] -> [SKIP][179] ([Intel XE#1130]) +24 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_vm@bind-no-array-conflict.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at xe_vm@bind-no-array-conflict.html #### Possible fixes #### * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][180] ([Intel XE#877]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][182] ([Intel XE#3321]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][184] ([Intel XE#301]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][186] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#2597]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][190] ([Intel XE#361]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][192] ([Intel XE#3313]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][194] -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][196] ([Intel XE#2883]) -> [PASS][197] +1 other test pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-3/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][198] ([Intel XE#899]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][200] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][202] ([Intel XE#1473]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][204] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-lnl-4/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][206] ([Intel XE#3088]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][208] -> [PASS][209] +1 other test pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-4/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][210] ([Intel XE#3781]) -> [INCOMPLETE][211] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-7/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][212] ([Intel XE#3781]) -> [INCOMPLETE][213] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][214] ([Intel XE#3768]) -> [SKIP][215] ([Intel XE#2423] / [i915#2575]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][216] ([Intel XE#3768]) -> [SKIP][217] ([Intel XE#3007]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@invalid-async-flip-atomic.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: [SKIP][218] ([Intel XE#2327]) -> [SKIP][219] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][220] ([Intel XE#316]) -> [SKIP][221] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][222] ([Intel XE#1124]) -> [SKIP][223] ([Intel XE#2136] / [Intel XE#2231]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][224] ([Intel XE#1124]) -> [SKIP][225] ([Intel XE#2136] / [Intel XE#2351]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][226] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][227] ([Intel XE#3007]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: [SKIP][228] ([Intel XE#2191]) -> [SKIP][229] ([Intel XE#2423] / [i915#2575]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][230] ([Intel XE#2907]) -> [SKIP][231] ([Intel XE#2136]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][232] ([Intel XE#2887]) -> [SKIP][233] ([Intel XE#2136] / [Intel XE#2231]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][234] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][235] ([Intel XE#2136]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][236] ([Intel XE#2325]) -> [SKIP][237] ([Intel XE#3007]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_chamelium_color@ctm-green-to-red.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html - shard-dg2-set2: [SKIP][238] ([Intel XE#306]) -> [SKIP][239] ([Intel XE#2423] / [i915#2575]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_chamelium_color@ctm-green-to-red.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-bmg: [SKIP][240] ([Intel XE#2252]) -> [SKIP][241] ([Intel XE#3007]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html - shard-dg2-set2: [SKIP][242] ([Intel XE#373]) -> [SKIP][243] ([Intel XE#2423] / [i915#2575]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_cursor_crc@cursor-offscreen-max-size: - shard-bmg: [SKIP][244] ([Intel XE#2320]) -> [SKIP][245] ([Intel XE#3007]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-max-size.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-max-size.html * igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw: - shard-dg2-set2: [SKIP][246] ([Intel XE#651]) -> [SKIP][247] ([Intel XE#2136]) +5 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][248] ([Intel XE#2311]) -> [SKIP][249] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][250] ([Intel XE#651]) -> [SKIP][251] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][252] ([Intel XE#877]) -> [FAIL][253] ([Intel XE#2333]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [FAIL][254] ([Intel XE#2333]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][256] ([Intel XE#2313]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][258] ([Intel XE#653]) -> [SKIP][259] ([Intel XE#2136]) +6 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][260] ([Intel XE#455]) -> [SKIP][261] ([Intel XE#2423] / [i915#2575]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_hdr@invalid-hdr.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_hdr@invalid-hdr.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][262] ([Intel XE#870]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2231]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_pm_backlight@fade.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_pm_backlight@fade.html - shard-dg2-set2: [SKIP][264] ([Intel XE#870]) -> [SKIP][265] ([Intel XE#2136]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_backlight@fade.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][266] ([Intel XE#2392]) -> [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_pm_dc@dc5-psr.html - shard-dg2-set2: [SKIP][268] ([Intel XE#1129]) -> [SKIP][269] ([Intel XE#2136]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_pm_dc@dc5-psr.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][270] ([Intel XE#1489]) -> [SKIP][271] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-dg2-set2: [SKIP][272] ([Intel XE#1489]) -> [SKIP][273] ([Intel XE#2136]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][274] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][276] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][277] ([Intel XE#2136]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@pr-sprite-blt.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_psr@pr-sprite-blt.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][278] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr-dpms.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][280] ([Intel XE#2330]) -> [SKIP][281] ([Intel XE#3007]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg2-set2: [SKIP][282] ([Intel XE#1127]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][284] ([Intel XE#362]) -> [FAIL][285] ([Intel XE#1729]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][286] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][287] ([Intel XE#1130]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@connect-user: - shard-bmg: [SKIP][288] ([Intel XE#2905]) -> [SKIP][289] ([Intel XE#1130]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_eudebug@connect-user.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at xe_eudebug@connect-user.html - shard-dg2-set2: [SKIP][290] ([Intel XE#2905]) -> [SKIP][291] ([Intel XE#1130]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_eudebug@connect-user.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at xe_eudebug@connect-user.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][292] ([Intel XE#1473]) -> [FAIL][293] ([Intel XE#1000]) +1 other test fail [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: [SKIP][294] ([Intel XE#2322]) -> [SKIP][295] ([Intel XE#1130]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt at xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][296] ([Intel XE#288]) -> [SKIP][297] ([Intel XE#1130]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html * igt at xe_oa@stress-open-close: - shard-dg2-set2: [SKIP][298] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][299] ([Intel XE#1130]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_oa@stress-open-close.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/shard-dg2-435/igt at xe_oa@stress-open-close.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3664 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12381 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12381: 074bed11364d33d37b2f359f4a7742697744decb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12381/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 19:45:21 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 19:45:21 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Ffbcon=5F?= =?utf-8?q?fbt=3A_Add_skip_condition_for_bmg_platform_=28rev4=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173593352155.2777577.8270002738336280092@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev4) URL : https://patchwork.freedesktop.org/series/141281/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12382_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12382_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12382_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12382_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset at bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset at bd-hdmi-a6-dp4.html #### Warnings #### * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][4] ([Intel XE#1695]) -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_fbcon_fbt@fbc-suspend.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_fbcon_fbt@fbc-suspend.html Known issues ------------ Here are the changes found in XEIGTPW_12382_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3157]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][7] -> [FAIL][8] ([Intel XE#3719]) +3 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3279]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3658]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1428]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +8 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#367]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +103 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-hdmi-a-3: - shard-bmg: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#3862]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-hdmi-a-3.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1727]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-5: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][29] ([Intel XE#1727]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-5.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#306]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][35] ([Intel XE#1178]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#307]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2341]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#3407]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at kms_content_protection@srm at pipe-a-dp-5.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3278]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-2/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2321]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-8/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2321]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1424]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-8/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455]) +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#309]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#877]) +3 other tests dmesg-warn [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#3007]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#2423] / [i915#2575]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2286]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#2141]) +2 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3383]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2244]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#2882] / [Intel XE#3288]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#3288] / [Intel XE#3321]) +2 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][60] -> [FAIL][61] ([Intel XE#3321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][62] -> [FAIL][63] ([Intel XE#301]) +7 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3321]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#3879]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#2882]) +5 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][71] ([Intel XE#2597]) +1 other test incomplete [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2293]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401] / [Intel XE#1745]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1401]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2311]) +18 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#651]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#2333]) +9 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2352]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#651]) +10 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2313]) +28 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#656]) +18 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1469]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +8 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1503]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#3898]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#346]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#2927]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2927]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2763]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +9 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +8 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2499]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#2446]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_rpm@dpms-lpsp.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1489]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1406]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3414] / [Intel XE#3904]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3414]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2413]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1435]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#362]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2450]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2: - shard-bmg: [PASS][111] -> [INCOMPLETE][112] ([Intel XE#3864]) +1 other test incomplete [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1499]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1499]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1: - shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#2142]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#756]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#756]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1091] / [Intel XE#2849]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#3918]) +1 other test incomplete [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-5/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][122] ([Intel XE#3869]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2905]) +6 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#3889]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#688]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][128] ([Intel XE#2364]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-5/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][129] ([Intel XE#1600]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1392]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2322]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_compute_mode@lr-mode-workload: - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#1130]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_exec_compute_mode@lr-mode-workload.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at xe_exec_compute_mode@lr-mode-workload.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#288]) +8 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1130]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1192]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-2/igt at xe_live_ktest@xe_bo.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1420] / [Intel XE#2838]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2284]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#584]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-mocs: - shard-bmg: [PASS][142] -> [FAIL][143] ([Intel XE#3902]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm@s3-mocs.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at xe_pm@s3-mocs.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][144] -> [ABORT][145] ([Intel XE#1358] / [Intel XE#1607]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_pm@s4-basic.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-2/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#579]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#944]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#944]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-8/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#944]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#3342]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][152] ([Intel XE#3321]) -> [PASS][153] +1 other test pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][156] ([Intel XE#2882]) -> [PASS][157] +1 other test pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][158] -> [PASS][159] +1 other test pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][160] ([Intel XE#1035]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][162] ([Intel XE#361]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][164] ([Intel XE#718]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][166] ([Intel XE#3313]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][168] -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][170] ([Intel XE#2883]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-4/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][172] ([Intel XE#899]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-2/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][174] ([Intel XE#1473]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][176] ([Intel XE#3865]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][178] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-lnl-3/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][180] ([Intel XE#3088]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-5/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][182] -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-5/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][184] ([Intel XE#3781]) -> [INCOMPLETE][185] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-7/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][186] ([Intel XE#3781]) -> [INCOMPLETE][187] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][188] ([Intel XE#1124]) -> [SKIP][189] ([Intel XE#2136]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-bmg: [SKIP][190] ([Intel XE#1124]) -> [SKIP][191] ([Intel XE#2136] / [Intel XE#2231]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][192] ([Intel XE#2887]) -> [SKIP][193] ([Intel XE#2136] / [Intel XE#2231]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html - shard-dg2-set2: [SKIP][194] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][195] ([Intel XE#2136]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][196] ([Intel XE#877]) -> [FAIL][197] ([Intel XE#2333]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][198] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][199] ([Intel XE#2446]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_pm_rpm@dpms-lpsp.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][200] ([Intel XE#2426]) -> [SKIP][201] ([Intel XE#2509]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][202] ([Intel XE#1473] / [Intel XE#402]) -> [INCOMPLETE][203] ([Intel XE#1473]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][204] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][205] ([Intel XE#1000]) +2 other tests fail [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-3/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-null: - shard-bmg: [SKIP][206] ([Intel XE#2322]) -> [SKIP][207] ([Intel XE#1130]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3902]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3902 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12382 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12382: 4f353044f9202b40007c2d4014135bc818bff1c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12382/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 20:16:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 20:16:53 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/igt=5Fkms=3A_Backup_?= =?utf-8?q?connector_modes_before_sorting_=28rev2=29?= In-Reply-To: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: <173593541318.2789119.6502848621309139381@b555e5b46a47> == Series Details == Series: lib/igt_kms: Backup connector modes before sorting (rev2) URL : https://patchwork.freedesktop.org/series/142834/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15898_full -> IGTPW_12384_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12384_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12384_full, please notify your bug team (I915-ci-infra at 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_12384/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12384_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-tglu-1: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at gem_tiled_swapping@non-threaded.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane_cursor@overlay: - shard-mtlp: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-6/igt at kms_plane_cursor@overlay.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_plane_cursor@overlay.html * igt at kms_plane_cursor@overlay at pipe-c-edp-1-size-128: - shard-mtlp: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-6/igt at kms_plane_cursor@overlay at pipe-c-edp-1-size-128.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_plane_cursor@overlay at pipe-c-edp-1-size-128.html * igt at kms_plane_cursor@overlay at pipe-d-edp-1-size-64: - shard-mtlp: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-6/igt at kms_plane_cursor@overlay at pipe-d-edp-1-size-64.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_plane_cursor@overlay at pipe-d-edp-1-size-64.html New tests --------- New tests have been introduced between CI_DRM_15898_full and IGTPW_12384_full: ### New IGT tests (2) ### * igt at gem_render_copy@linear-to-vebox-y-tiled at lmem0: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12384_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at api_intel_bb@object-reloc-keep-cache.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +33 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-9/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#6335]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][22] ([i915#6335]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: [PASS][23] -> [INCOMPLETE][24] ([i915#12353]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk8/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-snb7/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-6/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@kms: - shard-dg1: [PASS][32] -> [FAIL][33] ([i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-18/igt at gem_eio@kms.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg2: [PASS][34] -> [FAIL][35] ([i915#12543] / [i915#5784]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-1/igt at gem_eio@reset-stress.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-snb5/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4525]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-9/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#6334]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-5/igt at gem_exec_reloc@basic-cpu-wc-noreloc.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +14 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-scanout: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-3/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][53] -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-5/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#2190]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [PASS][62] -> [TIMEOUT][63] ([i915#5493]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at gem_lmem_swapping@verify-ccs at lmem0.html * igt at gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at gem_mmap@bad-offset.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-8/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-2/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@medium-copy-odd: - shard-rkl: [PASS][71] -> [DMESG-WARN][72] ([i915#12917] / [i915#12964]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-4/igt at gem_mmap_gtt@medium-copy-odd.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-3/igt at gem_mmap_gtt@medium-copy-odd.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][76] ([i915#2658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-3/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at gem_pwrite@basic-self.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12964]) +1 other test timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-3/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-tglu: [PASS][82] -> [SKIP][83] ([i915#4270]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-10/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-4/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-6/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4885]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][90] ([i915#13263] / [i915#13449]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-snb5/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][91] ([i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at gem_userptr_blits@readonly-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][97] +382 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-snb5/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#13356]) +1 other test incomplete [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk9/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][99] -> [DMESG-FAIL][100] ([i915#12964]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-4/igt at gem_workarounds@suspend-resume-context.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#2856]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][107] ([i915#9820]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][108] -> [ABORT][109] ([i915#12817] / [i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-5/igt at i915_module_load@reload-with-fault-injection.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#7091]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-3/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#8399]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-2/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-11/igt at i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5723]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][117] ([i915#9311]) +1 other test dmesg-warn [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][118] ([i915#9311]) +1 other test dmesg-warn [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at i915_selftest@mock at memory_region.html - shard-tglu: NOTRUN -> [DMESG-WARN][119] ([i915#9311]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at i915_selftest@mock at memory_region.html * igt at i915_selftest@perf: - shard-tglu: NOTRUN -> [ABORT][120] ([i915#13010]) +1 other test abort [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at i915_selftest@perf.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][121] ([i915#4817]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4212]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#8709]) +7 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-hdmi-a-3-y-rc-ccs-cc.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#8709]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#12967] / [i915#6228]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#10333]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-4/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][131] ([i915#11808]) +1 other test fail [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5286]) +9 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#5286]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-6/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6187]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +13 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][141] +85 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +14 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-2/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +160 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +79 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-3/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +100 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][148] ([i915#12796]) +1 other test incomplete [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6095]) +24 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#12313]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#6095]) +29 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#12313]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-6/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +163 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_cdclk@mode-transition: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3742]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#7828]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-9/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#7828]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7828]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7828]) +8 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7828]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7828]) +10 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt at kms_color@deep-color: - shard-dg2: [PASS][164] -> [SKIP][165] ([i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_color@deep-color.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-11/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#7118] / [i915#9424]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-7/igt at kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-3/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3116]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#9424]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#13049]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-offscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_cursor_crc@cursor-offscreen-max-size.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8814]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-5/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3555]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2: - shard-rkl: [PASS][182] -> [DMESG-WARN][183] ([i915#12964]) +35 other tests dmesg-warn [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555]) +8 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-6/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13049]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][187] ([i915#12964]) +26 other tests dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8814]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-6/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][191] +28 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#9809]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][193] ([i915#2346]) +1 other test fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#9067]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#4103]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#9833]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9723]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#9723]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9833]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-8/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555]) +8 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8588]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#8588]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#8588]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][204] ([i915#8588]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3804]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3804]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#12402]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#12402]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-4/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#8812]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3469]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#4854]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-5/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#4854]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#4854]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#1839]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][218] ([i915#658]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#658]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#658]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#4881]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][222] ([i915#4881]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#9934]) +9 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-6/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3637]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8381]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +6 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-10/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3637]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9934]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][230] -> [FAIL][231] ([i915#11989]) +2 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-1/igt at kms_flip@blocking-wf_vblank.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-1/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#8381]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-2/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#2672]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2672]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-3/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +5 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +7 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [PASS][245] -> [FAIL][246] ([i915#6880]) +2 other tests fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354]) +28 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][248] +39 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#8708]) +18 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-glk: NOTRUN -> [DMESG-FAIL][250] ([i915#118]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk9/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#5439]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +22 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#1825]) +58 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][254] +41 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#9766]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3458]) +18 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#3023]) +34 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3458]) +15 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1825]) +8 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8708]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#13388]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_histogram@global-basic.html - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#13388]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#13388]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#10656]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#10656]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#12388]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-6/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#12339]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#4816]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#1839]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#1839]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#6301]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][275] ([i915#6301]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#6301]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#12756] / [i915#13409]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][278] ([i915#13026]) +1 other test incomplete [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][279] ([i915#10647] / [i915#12169]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk8/igt at kms_plane_alpha_blend@alpha-opaque-fb.html * igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][280] ([i915#10647]) +3 other tests fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk8/igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][281] ([i915#10647] / [i915#12177]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#13046] / [i915#5354] / [i915#9423]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12247]) +18 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#12247]) +12 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#9423]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#12247]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-18/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-2/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#6953]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#6953]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-7/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#12247]) +5 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-7/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#3555]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12247]) +12 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12343]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-2/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#9685]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_pm_dc@dc5-psr.html - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#9685]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#3828]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-6/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#3828]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#3361]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#9340]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9519]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9519]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][304] -> [SKIP][305] ([i915#9519]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-7/igt at kms_pm_rpm@modeset-non-lpsp.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9519]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][307] ([i915#10553]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#6524] / [i915#6805]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][309] ([i915#6524]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-8/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12316]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-2/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#11520]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-11/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#11520]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#11520]) +5 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-4/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][314] ([i915#11520]) +11 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#11520]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#11520]) +9 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][317] ([i915#11520]) +8 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-snb7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9683]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-4/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +13 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#9732]) +22 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +5 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-5/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +31 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_psr@pr-sprite-mmap-gtt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +24 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#4077] / [i915#9688]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-6/igt at kms_psr@psr-primary-mmap-gtt at edp-1.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9732]) +7 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][326] +579 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#5289]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#5289]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#5289]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#5289]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12755]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-11/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#3555]) +6 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-5/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][333] ([i915#13179]) +1 other test abort [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-snb5/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8809]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][335] ([i915#10959]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#8623]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#8623]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#8623]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][339] +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][340] ([i915#12276]) +1 other test incomplete [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk2/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#8808] / [i915#9906]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-1/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#9906]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9906]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#2437] / [i915#9412]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#2437]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][346] ([i915#2437]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][347] ([i915#2437]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][348] ([i915#2437]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-7/igt at kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][349] ([i915#2437]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#2434]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-1/igt at perf@mi-rpc.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#2435]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-6/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy: - shard-dg1: NOTRUN -> [FAIL][352] ([i915#4349]) +5 other tests fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-17/igt at perf_pmu@busy.html * igt at perf_pmu@event-wait at rcs0: - shard-dg2: NOTRUN -> [SKIP][353] +16 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-10/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@most-busy-idle-check-all: - shard-rkl: NOTRUN -> [DMESG-FAIL][354] ([i915#12964]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at perf_pmu@most-busy-idle-check-all.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: NOTRUN -> [FAIL][355] ([i915#4349]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#3291] / [i915#3708]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-7/igt at prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][357] ([i915#3291] / [i915#3708]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#3708]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-12/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#3708]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#9917]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][361] ([i915#9917]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-1/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#9917]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-14/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][363] ([i915#12910]) +9 other tests fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-7/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][364] ([i915#12910]) +9 other tests fail [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-2/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html #### Possible fixes #### * igt at gem_ctx_param@invalid-ctx-set: - shard-rkl: [DMESG-WARN][365] ([i915#12964]) -> [PASS][366] +31 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at gem_ctx_param@invalid-ctx-set.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-4/igt at gem_ctx_param@invalid-ctx-set.html * igt at gem_exec_endless@dispatch at ccs0: - shard-dg2: [INCOMPLETE][367] -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-3/igt at gem_exec_endless@dispatch at ccs0.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at gem_exec_endless@dispatch at ccs0.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][369] -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-11/igt at gem_lmem_swapping@verify-random.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-8/igt at gem_lmem_swapping@verify-random.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][371] ([i915#10729]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_workarounds@suspend-resume: - shard-rkl: [INCOMPLETE][373] ([i915#13356]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-5/igt at gem_workarounds@suspend-resume.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][375] ([i915#12964]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-1/igt at gem_workarounds@suspend-resume-fd.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_module_load@load: - shard-glk: ([PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [DMESG-WARN][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400]) ([i915#118]) -> ([PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at i915_module_load@load.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at i915_module_load@load.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk1/igt at i915_module_load@load.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk8/igt at i915_module_load@load.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk2/igt at i915_module_load@load.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk5/igt at i915_module_load@load.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk4/igt at i915_module_load@load.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk3/igt at i915_module_load@load.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk9/igt at i915_module_load@load.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk9/igt at i915_module_load@load.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk9/igt at i915_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk9/igt at i915_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk8/igt at i915_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk8/igt at i915_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk8/igt at i915_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at i915_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at i915_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at i915_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at i915_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk6/igt at i915_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk6/igt at i915_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at i915_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at i915_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at i915_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk5/igt at i915_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk1/igt at i915_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk4/igt at i915_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk4/igt at i915_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk2/igt at i915_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at i915_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at i915_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at i915_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk2/igt at i915_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk2/igt at i915_module_load@load.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: [FAIL][426] ([i915#3591]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_selftest@live: - shard-tglu: [ABORT][428] ([i915#12061] / [i915#13010]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-5/igt at i915_selftest@live.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at i915_selftest@live.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [INCOMPLETE][430] ([i915#4817]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-5/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][432] ([i915#12761] / [i915#1982]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at kms_async_flips@async-flip-suspend-resume.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk3/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@crc: - shard-rkl: [INCOMPLETE][434] ([i915#13287] / [i915#9878]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-2/igt at kms_async_flips@crc.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_async_flips@crc.html - shard-tglu: [INCOMPLETE][436] ([i915#13287] / [i915#9878]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-2/igt at kms_async_flips@crc.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-7/igt at kms_async_flips@crc.html - shard-glk: [INCOMPLETE][438] ([i915#9878]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at kms_async_flips@crc.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at kms_async_flips@crc.html - shard-dg2: [WARN][440] ([i915#13287]) -> [PASS][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-11/igt at kms_async_flips@crc.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-5/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-tglu: [INCOMPLETE][442] ([i915#13287]) -> [PASS][443] +2 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-tglu-3/igt at kms_async_flips@crc-atomic.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-tglu-6/igt at kms_async_flips@crc-atomic.html - shard-glk: [INCOMPLETE][444] ([i915#13287] / [i915#13423]) -> [PASS][445] +1 other test pass [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk6/igt at kms_async_flips@crc-atomic.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at kms_async_flips@crc-atomic.html - shard-dg2: [INCOMPLETE][446] ([i915#13287]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-dg2-10/igt at kms_async_flips@crc-atomic.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-dg2-2/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][448] ([i915#13287]) -> [PASS][449] [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-glk7/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-glk7/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html - shard-rkl: [INCOMPLETE][450] ([i915#13287]) -> [PASS][451] [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-rkl-2/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/shard-rkl-7/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][452] ([i915#5138]) -> [PASS][453] [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15898/shard-mtlp-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12384/index.html From patchwork at emeril.freedesktop.org Fri Jan 3 20:58:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 20:58:26 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel=3A_Enhance_the?= =?utf-8?q?_wedged=5Fmode_sysfs_support?= In-Reply-To: <20250103124115.765794-1-pravalika.gurram@intel.com> References: <20250103124115.765794-1-pravalika.gurram@intel.com> Message-ID: <173593790620.2801568.2699051336347947543@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support URL : https://patchwork.freedesktop.org/series/143094/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12383_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12383_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12383_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12383_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-5.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [FAIL][2] +3 other tests fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible at b-dp2: - shard-bmg: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html * igt at xe_create@create-contexts: - shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_create@create-contexts.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at xe_create@create-contexts.html * igt at xe_exec_balancer@many-execqueues-parallel-rebind: - shard-dg2-set2: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_balancer@many-execqueues-parallel-rebind.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at xe_exec_balancer@many-execqueues-parallel-rebind.html * igt at xe_exec_threads@threads-hang-rebind: - shard-dg2-set2: [PASS][8] -> [DMESG-WARN][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_threads@threads-hang-rebind.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at xe_exec_threads@threads-hang-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12383_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3157]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#3719]) +3 other tests fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3279]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3658]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-2/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +8 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +97 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +30 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#2705]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +9 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#306]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +6 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][35] ([Intel XE#1178]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#307]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#3304]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_content_protection@legacy at pipe-a-dp-5.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2341]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3278]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2321]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2321]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2320]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1424]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#309]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#877]) +1 other test dmesg-warn [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2286]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-bmg: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1727]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#2141]) +2 other tests fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#3383]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2244]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-dg2-set2: [PASS][54] -> [DMESG-FAIL][55] ([Intel XE#1727] / [Intel XE#3468]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-blocking-absolute-wf_vblank.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-absolute-wf_vblank at ab-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][56] ([Intel XE#3468]) +1 other test dmesg-warn [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_flip@2x-blocking-absolute-wf_vblank at ab-hdmi-a6-dp5.html * igt at kms_flip@2x-blocking-absolute-wf_vblank at ac-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][57] ([Intel XE#3468]) +1 other test dmesg-fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_flip@2x-blocking-absolute-wf_vblank at ac-hdmi-a6-dp5.html * igt at kms_flip@2x-blocking-absolute-wf_vblank at ad-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][58] ([Intel XE#1727] / [Intel XE#3468]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_flip@2x-blocking-absolute-wf_vblank at ad-hdmi-a6-dp5.html * igt at kms_flip@2x-blocking-absolute-wf_vblank at cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][59] ([Intel XE#1727] / [Intel XE#3468]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_flip@2x-blocking-absolute-wf_vblank at cd-hdmi-a6-dp5.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][60] -> [FAIL][61] ([Intel XE#301]) +8 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#2882]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#2882] / [Intel XE#3288]) +2 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#3288] / [Intel XE#3321]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#301] / [Intel XE#3321]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-expired-vblank at d-dp2: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#2049] / [Intel XE#2597]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-suspend.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][75] ([Intel XE#2597]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#651]) +7 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2311]) +13 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][82] ([Intel XE#2333]) +8 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [PASS][83] -> [INCOMPLETE][84] ([Intel XE#1727] / [Intel XE#3468]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +11 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#656]) +20 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2352]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +26 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1469]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +9 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1503]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#3898]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-7/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#346]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2927]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2927]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][96] -> [FAIL][97] ([Intel XE#616]) +1 other test fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_cursor@viewport.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#2685] / [Intel XE#3307]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@intel-max-src-size.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +9 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#908]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2499]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2893]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1489]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1406]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-8/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@pr-suspend: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_psr@pr-suspend.html * igt at kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#3414] / [Intel XE#3904]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#3414]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2413]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1435]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#362]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2450]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@wait-forked-busy: - shard-dg2-set2: [PASS][119] -> [INCOMPLETE][120] ([Intel XE#1727]) +1 other test incomplete [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_vblank@wait-forked-busy.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_vblank@wait-forked-busy.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1499]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1499]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#756]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#756]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1091] / [Intel XE#2849]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][126] -> [INCOMPLETE][127] ([Intel XE#3918]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][128] ([Intel XE#3869]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3889]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#1600]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-threads-large: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#688]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1392]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#1727]) +1 other test dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2322]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#288]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_exec_threads@threads-hang-userptr-rebind-err: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][140] ([Intel XE#3876]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at xe_exec_threads@threads-hang-userptr-rebind-err.html * igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][141] -> [DMESG-WARN][142] ([Intel XE#3467]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html - shard-dg2-set2: [PASS][143] -> [DMESG-WARN][144] ([Intel XE#3467] / [Intel XE#3468]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1192]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#378]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at xe_module_load@force-load.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2284]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-mocs: - shard-bmg: [PASS][149] -> [FAIL][150] ([Intel XE#3902]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm@s3-mocs.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at xe_pm@s3-mocs.html * igt at xe_pm@s4-basic: - shard-bmg: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#1727] / [Intel XE#3468]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_pm@s4-basic.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#579]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#944]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#944]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#3342]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][159] ([Intel XE#877]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][161] ([Intel XE#3321]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][163] ([Intel XE#301]) -> [PASS][164] +2 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][165] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][167] ([Intel XE#2882]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][169] -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_hdr@bpc-switch.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][171] ([Intel XE#1430]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at kms_pm_dc@dc6-psr.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][173] ([Intel XE#3313]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][177] ([Intel XE#2883]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][179] ([Intel XE#899]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][181] ([Intel XE#3865]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][183] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-lnl-5/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][185] ([Intel XE#3088]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][187] -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][189] ([Intel XE#3781]) -> [INCOMPLETE][190] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-8/igt at kms_async_flips@crc.html - shard-dg2-set2: [INCOMPLETE][191] ([Intel XE#3781]) -> [INCOMPLETE][192] ([Intel XE#3781] / [Intel XE#3946]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@crc.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-435/igt at kms_async_flips@crc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][193] ([Intel XE#877]) -> [FAIL][194] ([Intel XE#2333]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][195] ([Intel XE#361]) -> [SKIP][196] ([Intel XE#455]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][197] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][198] ([Intel XE#3289]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_pm_rpm@dpms-lpsp.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-3/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][199] ([Intel XE#362]) -> [FAIL][200] ([Intel XE#1729]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][201] ([Intel XE#1473] / [Intel XE#2472]) -> [TIMEOUT][202] ([Intel XE#1473]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][203] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][204] ([Intel XE#1000]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3902]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3902 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12383 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12383: 18dc2133030940556ad75ee0c12c4801627b5280 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12383/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From thomas.petazzoni at bootlin.com Fri Jan 3 22:26:28 2025 From: thomas.petazzoni at bootlin.com (Thomas Petazzoni) Date: Fri, 3 Jan 2025 23:26:28 +0100 Subject: [PATCH i-g-t] lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 Message-ID: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Unfortunately, the API of procps-ng has changed between procps-ng 4.0.4 and procps-ng 4.0.5, with the PIDS_VAL() macro changing in upstream commit https://gitlab.com/procps-ng/procps/-/commit/967fdcfb06e20aad0f31073474cb94545c9bdea5. This API breakage has been reported upstream as of https://gitlab.com/procps-ng/procps/-/issues/366, but in the mean time, the build of igt-gpu-tools breaks with: ../lib/igt_aux.c:1358:78: error: macro "PIDS_VAL" passed 4 arguments, but takes just 3 We fix this by detecting the version of the libproc2 library, and adjusting accordingly how PIDS_VAL() gets used. Signed-off-by: Thomas Petazzoni --- lib/igt_aux.c | 7 +++++++ meson.build | 3 +++ 2 files changed, 10 insertions(+) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index 3407cc4f2..f5bf48da6 100644 --- a/lib/igt_aux.c +++ b/lib/igt_aux.c @@ -1358,10 +1358,17 @@ static bool get_process_ids(struct igt_process *prcs) prcs->comm = NULL; prcs->stack = procps_pids_get(prcs->info, PIDS_FETCH_TASKS_ONLY); if (prcs->stack) { +#if defined(HAVE_LIBPROC2_POST_4_0_5_API) + prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack); + prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack); + prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack); + prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack); +#else prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack, prcs->info); prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack, prcs->info); prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack, prcs->info); prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack, prcs->info); +#endif } #endif return prcs->tid != 0; diff --git a/meson.build b/meson.build index 8b2a2a64a..f3e645c4d 100644 --- a/meson.build +++ b/meson.build @@ -139,6 +139,9 @@ if libprocps.found() config.set('HAVE_LIBPROCPS', 1) elif libproc2.found() config.set('HAVE_LIBPROC2', 1) + if libproc2.version().version_compare('>= 4.0.5') + config.set('HAVE_LIBPROC2_POST_4_0_5_API', 1) + endif else error('Either libprocps or libproc2 is required') endif -- 2.47.1 From jonathan.cavitt at intel.com Fri Jan 3 23:33:27 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Fri, 3 Jan 2025 23:33:27 +0000 Subject: [PATCH i-g-t] lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 In-Reply-To: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Thomas Petazzoni Sent: Friday, January 3, 2025 2:26 PM To: igt-dev at lists.freedesktop.org Cc: Thomas Petazzoni Subject: [PATCH i-g-t] lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 > > Unfortunately, the API of procps-ng has changed between procps-ng > 4.0.4 and procps-ng 4.0.5, with the PIDS_VAL() macro changing in > upstream commit > https://gitlab.com/procps-ng/procps/-/commit/967fdcfb06e20aad0f31073474cb94545c9bdea5. > > This API breakage has been reported upstream as of > https://gitlab.com/procps-ng/procps/-/issues/366, but in the mean > time, the build of igt-gpu-tools breaks with: > > ../lib/igt_aux.c:1358:78: error: macro "PIDS_VAL" passed 4 arguments, but takes just 3 > > We fix this by detecting the version of the libproc2 library, and > adjusting accordingly how PIDS_VAL() gets used. > > Signed-off-by: Thomas Petazzoni > --- > lib/igt_aux.c | 7 +++++++ > meson.build | 3 +++ > 2 files changed, 10 insertions(+) > > diff --git a/lib/igt_aux.c b/lib/igt_aux.c > index 3407cc4f2..f5bf48da6 100644 > --- a/lib/igt_aux.c > +++ b/lib/igt_aux.c > @@ -1358,10 +1358,17 @@ static bool get_process_ids(struct igt_process *prcs) > prcs->comm = NULL; > prcs->stack = procps_pids_get(prcs->info, PIDS_FETCH_TASKS_ONLY); > if (prcs->stack) { > +#if defined(HAVE_LIBPROC2_POST_4_0_5_API) "HAVE_LIBPROC2_POST_4_0_5_API" works as a name for this new tag, though I wonder if "HAVE_LIBPROC2_NO_INFO" would also work? I don't see any other granular version checks in the meson build file (at least, I don't see any that aren't strict version requirements for certain dependencies), so AFAICT this type of tag is fairly novel. So whatever name we end up choosing may end up inadvertently becoming a standard naming convention for future tags like this one. ... Well, assuming I haven't just missed where the standard is already set, which is fairly likely all things considered. But again, the current name works, so I won't block on this decision. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > + prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack); > + prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack); > + prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack); > + prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack); > +#else > prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack, prcs->info); > prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack, prcs->info); > prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack, prcs->info); > prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack, prcs->info); > +#endif > } > #endif > return prcs->tid != 0; > diff --git a/meson.build b/meson.build > index 8b2a2a64a..f3e645c4d 100644 > --- a/meson.build > +++ b/meson.build > @@ -139,6 +139,9 @@ if libprocps.found() > config.set('HAVE_LIBPROCPS', 1) > elif libproc2.found() > config.set('HAVE_LIBPROC2', 1) > + if libproc2.version().version_compare('>= 4.0.5') > + config.set('HAVE_LIBPROC2_POST_4_0_5_API', 1) > + endif > else > error('Either libprocps or libproc2 is required') > endif > -- > 2.47.1 > > From patchwork at emeril.freedesktop.org Fri Jan 3 23:44:39 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 23:44:39 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/igt=5Faux=2Ec=3A_since_?= =?utf-8?q?procps-ng_4=2E0=2E5=2C_PIDS=5FVAL=28=29_takes_3_arguments=2C_not_?= =?utf-8?q?4?= In-Reply-To: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: <173594787971.2861458.8909979219083235667@b555e5b46a47> == Series Details == Series: lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 URL : https://patchwork.freedesktop.org/series/143106/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12385_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12385_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3958]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12385 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2434-eaac387c7c9ff315ce63b390715371fdbb86b845 IGTPW_12385: 9f108fec336b588b7d2c981d0026302935398534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2434-eaac387c7c9ff315ce63b390715371fdbb86b845: eaac387c7c9ff315ce63b390715371fdbb86b845 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 3 23:47:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 03 Jan 2025 23:47:02 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/igt=5Faux=2Ec=3A_sinc?= =?utf-8?q?e_procps-ng_4=2E0=2E5=2C_PIDS=5FVAL=28=29_takes_3_arguments=2C_no?= =?utf-8?q?t_4?= In-Reply-To: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: <173594802265.2862127.10935321382949550515@b555e5b46a47> == Series Details == Series: lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 URL : https://patchwork.freedesktop.org/series/143106/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12385 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/index.html Participating hosts (40 -> 36) ------------------------------ Missing (4): bat-rplp-1 bat-dg2-11 bat-dg2-14 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12385 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arls-5/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/bat-arlh-2/igt at i915_selftest@live at workarounds.html [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12385 * Linux: CI_DRM_15892 -> CI_DRM_15902 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15902: eaac387c7c9ff315ce63b390715371fdbb86b845 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12385: 9f108fec336b588b7d2c981d0026302935398534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/index.html From patchwork at emeril.freedesktop.org Sat Jan 4 00:39:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 00:39:38 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/igt=5Fkms=3A_Backup_co?= =?utf-8?q?nnector_modes_before_sorting_=28rev2=29?= In-Reply-To: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: <173595117885.2878186.17203524304319996633@b555e5b46a47> == Series Details == Series: lib/igt_kms: Backup connector modes before sorting (rev2) URL : https://patchwork.freedesktop.org/series/142834/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12384_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12384_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12384_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12384_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-hdmi-a-3.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ad-dp2-hdmi-a3.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp5: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible at d-dp5.html * igt at kms_plane_lowres@tiling-none at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][5] -> [INCOMPLETE][6] +2 other tests incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_lowres@tiling-none at pipe-d-hdmi-a-6.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_plane_lowres@tiling-none at pipe-d-hdmi-a-6.html * igt at kms_setmode@basic at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][7] +2 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_setmode@basic at pipe-a-dp-2.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][10] ([Intel XE#1473]) -> [DMESG-FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][12] ([Intel XE#1473] / [Intel XE#2472]) -> [DMESG-FAIL][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html Known issues ------------ Here are the changes found in XEIGTPW_12384_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@all-cards: - shard-dg2-set2: [PASS][14] -> [FAIL][15] ([Intel XE#3440]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getversion@all-cards.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at core_getversion@all-cards.html * igt at fbdev@info: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2134]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at fbdev@info.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3157]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3279]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_interruptible@legacy-cursor: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#3007]) +15 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_atomic_interruptible@legacy-cursor.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_atomic_interruptible@legacy-cursor.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#316]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#1454]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#3658]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) +8 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#367]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +112 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#2692]) +1 other test incomplete [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +8 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-d-dp-5.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#306]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#307]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2341]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3278]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2321]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2320]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#877]) +1 other test dmesg-warn [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3007]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2286]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@default-dirtyfb-ioctl: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_dirtyfb@default-dirtyfb-ioctl.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_dirtyfb@default-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#2141]) +2 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#3383]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2244]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#2882] / [Intel XE#3288]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#3288] / [Intel XE#3321]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3321]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#301]) +2 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301]) +3 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#2049] / [Intel XE#2597]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-suspend.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][77] ([Intel XE#2597]) +1 other test incomplete [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-dp2: - shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#3879]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at a-dp2.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp2: - shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#3664]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at d-dp2.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][80] ([Intel XE#2049]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip@flip-vs-suspend at d-dp2: - shard-bmg: [PASS][81] -> [INCOMPLETE][82] ([Intel XE#2597]) +1 other test incomplete [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at d-dp2.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at kms_flip@flip-vs-suspend at d-dp2.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at c-dp2: - shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#2882]) +2 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at c-dp2.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at c-dp2.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#886]) +1 other test fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_flip@plain-flip-ts-check-interruptible.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1401] / [Intel XE#1745]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1397]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2311]) +15 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#651]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#651]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][96] ([Intel XE#2333]) +9 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2352]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +21 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2313]) +29 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-lnl: [PASS][102] -> [INCOMPLETE][103] ([Intel XE#2050]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1469]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#1503]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_hdr@invalid-hdr.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1503]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#3898]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#346]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2927]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2927]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +14 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +8 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#2423] / [i915#2575]) +34 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-factor-0-25.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-factor-0-25.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2499]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2446]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_pm_rpm@basic-pci-d3-state.html - shard-dg2-set2: [PASS][121] -> [SKIP][122] ([Intel XE#2446]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_rpm@basic-pci-d3-state.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2893]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2136]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1406]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3414] / [Intel XE#3904]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#455]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_scaling_modes@scaling-mode-full.html - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2413]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic: - shard-bmg: NOTRUN -> [FAIL][134] ([Intel XE#2883] / [Intel XE#3180]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][135] ([Intel XE#2883]) +4 other tests fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_setmode@basic at pipe-a-hdmi-a-3.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#362]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2450]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#1499]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1499]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1: - shard-lnl: [PASS][140] -> [FAIL][141] ([Intel XE#2142]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#756]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#756]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1091] / [Intel XE#2849]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][145] -> [INCOMPLETE][146] ([Intel XE#2771] / [Intel XE#3918]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_ccs@suspend-resume.html * igt at xe_ccs@suspend-resume at linear-compressed-compfmt0-vram01-vram01: - shard-bmg: [PASS][147] -> [INCOMPLETE][148] ([Intel XE#3918]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume at linear-compressed-compfmt0-vram01-vram01.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_ccs@suspend-resume at linear-compressed-compfmt0-vram01-vram01.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][149] ([Intel XE#3869]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2905]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2905]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#3889]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][155] ([Intel XE#2364]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1392]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2322]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1130]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@once-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#288]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_exec_fault_mode@once-bindexecqueue-userptr-rebind.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1192]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - shard-bmg: [PASS][161] -> [FAIL][162] ([Intel XE#3099]) +2 other tests fail [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1420] / [Intel XE#2838]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2284]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#584]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#944]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#944]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_query@multigpu-query-topology.html * igt at xe_spin_batch@spin-basic-all: - shard-bmg: [PASS][170] -> [SKIP][171] ([Intel XE#1130]) +35 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_spin_batch@spin-basic-all.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_spin_batch@spin-basic-all.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#3342]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@mmap-style-bind-userptr-one-partial: - shard-dg2-set2: [PASS][173] -> [SKIP][174] ([Intel XE#1130]) +57 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_vm@mmap-style-bind-userptr-one-partial.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_vm@mmap-style-bind-userptr-one-partial.html #### Possible fixes #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][175] ([Intel XE#3781]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_async_flips@crc.html - shard-dg2-set2: [INCOMPLETE][177] ([Intel XE#3781]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@crc.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_async_flips@crc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-dp-2: - shard-bmg: [INCOMPLETE][179] -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-dp-2.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-dp-2.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][181] ([Intel XE#3321]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][183] ([Intel XE#301]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][185] ([Intel XE#2882]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][187] -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_hdr@bpc-switch.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][189] ([Intel XE#3313]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][191] -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][193] ([Intel XE#2883]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][195] ([Intel XE#899]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at xe_module_load@load: - shard-lnl: ([PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [SKIP][219], [PASS][220], [PASS][221], [PASS][222]) ([Intel XE#378]) -> ([PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-3/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-2/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-6/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-8/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-5/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-1/igt at xe_module_load@load.html - shard-bmg: ([PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [SKIP][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271]) ([Intel XE#2457]) -> ([PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-7/igt at xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-1/igt at xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-8/igt at xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-4/igt at xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_module_load@load.html - shard-dg2-set2: ([PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [SKIP][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322]) ([Intel XE#378]) -> ([PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-436/igt at xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_module_load@load.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][348] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-lnl-4/igt at xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][350] ([Intel XE#2327]) -> [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg2-set2: [SKIP][352] ([Intel XE#316]) -> [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][354] ([Intel XE#1124]) -> [SKIP][355] ([Intel XE#2136] / [Intel XE#2231]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html - shard-dg2-set2: [SKIP][356] ([Intel XE#1124]) -> [SKIP][357] ([Intel XE#2136]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][358] ([Intel XE#607]) -> [SKIP][359] ([Intel XE#2136] / [Intel XE#2351]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][360] ([Intel XE#1124]) -> [SKIP][361] ([Intel XE#2136] / [Intel XE#2351]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: [SKIP][362] ([Intel XE#367]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_bw@linear-tiling-3-displays-3840x2160p.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_bw@linear-tiling-3-displays-3840x2160p.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-dg2-set2: [SKIP][364] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][365] ([Intel XE#2136]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][366] ([Intel XE#2887]) -> [SKIP][367] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][368] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][369] ([Intel XE#2136] / [Intel XE#2351]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-max: - shard-dg2-set2: [SKIP][370] ([Intel XE#306]) -> [SKIP][371] ([Intel XE#2423] / [i915#2575]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_color@ctm-max.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_chamelium_color@ctm-max.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][372] ([Intel XE#373]) -> [SKIP][373] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][374] ([Intel XE#2252]) -> [SKIP][375] ([Intel XE#3007]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][376] ([Intel XE#2320]) -> [SKIP][377] ([Intel XE#3007]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2136]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][380] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2-set2: [SKIP][382] ([Intel XE#455]) -> [SKIP][383] ([Intel XE#2136] / [Intel XE#2351]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][384] ([Intel XE#651]) -> [SKIP][385] ([Intel XE#2136]) +4 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][386] ([Intel XE#2311]) -> [SKIP][387] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][388] ([Intel XE#651]) -> [SKIP][389] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][390] ([Intel XE#877]) -> [FAIL][391] ([Intel XE#2333]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][392] ([Intel XE#2333]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][394] ([Intel XE#653]) -> [SKIP][395] ([Intel XE#2136]) +6 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-1p-rte: - shard-bmg: [SKIP][396] ([Intel XE#2313]) -> [SKIP][397] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-1p-rte.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-1p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][398] ([Intel XE#653]) -> [SKIP][399] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_hdr@bpc-switch-suspend: - shard-bmg: [FAIL][400] -> [SKIP][401] ([Intel XE#3007]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][402] ([Intel XE#2934]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2231]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][404] ([Intel XE#2925]) -> [SKIP][405] ([Intel XE#2136]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-force-ultra-joiner.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_plane_lowres@tiling-y: - shard-dg2-set2: [SKIP][406] ([Intel XE#455]) -> [SKIP][407] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_lowres@tiling-y.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][408] ([Intel XE#2493]) -> [SKIP][409] ([Intel XE#3007]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_plane_multiple@tiling-yf.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_plane_multiple@tiling-yf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][410] ([Intel XE#1489]) -> [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html - shard-dg2-set2: [SKIP][412] ([Intel XE#1489]) -> [SKIP][413] ([Intel XE#2136]) +2 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][414] ([Intel XE#1122]) -> [SKIP][415] ([Intel XE#2136]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-xrgb8888.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-bmg: [SKIP][416] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][417] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_psr@fbc-pr-sprite-plane-onoff.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][418] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@pr-primary-page-flip.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_psr@pr-primary-page-flip.html * igt at kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][420] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][421] ([Intel XE#2136]) +2 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@pr-sprite-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at kms_psr@pr-sprite-blt.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][422] ([Intel XE#2234]) -> [SKIP][423] ([Intel XE#2136] / [Intel XE#2231]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr@psr2-primary-render.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at kms_psr@psr2-primary-render.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][424] ([Intel XE#362]) -> [FAIL][425] ([Intel XE#1729]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][426] ([Intel XE#3889]) -> [SKIP][427] ([Intel XE#1130]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][428] ([Intel XE#3889]) -> [SKIP][429] ([Intel XE#1130]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: [SKIP][430] ([Intel XE#2905]) -> [SKIP][431] ([Intel XE#1130]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@set-breakpoint: - shard-bmg: [SKIP][432] ([Intel XE#2905]) -> [SKIP][433] ([Intel XE#1130]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_eudebug_online@set-breakpoint.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_eudebug_online@set-breakpoint.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][434] ([Intel XE#1473]) -> [FAIL][435] ([Intel XE#1000]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [TIMEOUT][436] ([Intel XE#1473]) -> [SKIP][437] ([Intel XE#1130]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-large.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-large.html - shard-dg2-set2: [TIMEOUT][438] ([Intel XE#1473]) -> [SKIP][439] ([Intel XE#1130]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_fault_mode@once-userptr-invalidate-race: - shard-dg2-set2: [SKIP][440] ([Intel XE#288]) -> [SKIP][441] ([Intel XE#1130]) +9 other tests skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-invalidate-race.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_exec_fault_mode@once-userptr-invalidate-race.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][442] ([Intel XE#3865]) -> [SKIP][443] ([Intel XE#1130]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: [SKIP][444] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][445] ([Intel XE#1130]) +2 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_oa@disabled-read-error.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_oa@disabled-read-error.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][446] ([Intel XE#2284]) -> [SKIP][447] ([Intel XE#1130]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_pm@s4-d3cold-basic-exec.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-bmg-5/igt at xe_pm@s4-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][448] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][449] ([Intel XE#1130]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pm@s4-d3cold-basic-exec.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-435/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-config: - shard-dg2-set2: [SKIP][450] ([Intel XE#944]) -> [SKIP][451] ([Intel XE#1130]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-config.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/shard-dg2-466/igt at xe_query@multigpu-query-config.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1454]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1454 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3180]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3180 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3664 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12384 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 IGTPW_12384: def1e5a7112e4f5db9bc4f92f839e5858bcc3531 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2430-901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2: 901262fb6987b4fa0dbb26979a6c4e25f0ba8fd2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12384/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 4 02:27:56 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 02:27:56 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/igt=5Faux=2Ec=3A_sin?= =?utf-8?q?ce_procps-ng_4=2E0=2E5=2C_PIDS=5FVAL=28=29_takes_3_arguments=2C_n?= =?utf-8?q?ot_4?= In-Reply-To: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: <173595767622.2919128.2002699434025381383@b555e5b46a47> == Series Details == Series: lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 URL : https://patchwork.freedesktop.org/series/143106/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15902_full -> IGTPW_12385_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12385_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12385_full, please notify your bug team (I915-ci-infra at 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_12385/index.html Participating hosts (11 -> 11) ------------------------------ Additional (1): shard-glk-0 Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12385_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-6/igt at gem_exec_big@single.html * igt at perf_pmu@busy-check-all at vcs1: - shard-dg1: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg1-14/igt at perf_pmu@busy-check-all at vcs1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at perf_pmu@busy-check-all at vcs1.html - shard-mtlp: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-2/igt at perf_pmu@busy-check-all at vcs1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-7/igt at perf_pmu@busy-check-all at vcs1.html * igt at perf_pmu@busy-check-all at vecs1: - shard-dg2: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-10/igt at perf_pmu@busy-check-all at vecs1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at perf_pmu@busy-check-all at vecs1.html New tests --------- New tests have been introduced between CI_DRM_15902_full and IGTPW_12385_full: ### New IGT tests (4) ### * igt at gem_ppgtt@shrink-vs-evict-any: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt at gem_ppgtt@shrink-vs-evict-pinned: - Statuses : 5 pass(s) - Exec time: [5.06, 7.84] s * igt at gem_render_copy@linear-to-vebox-y-tiled at lmem0: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12385_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-5/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at drm_fdinfo@busy-check-all at vecs1.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at drm_fdinfo@virtual-busy-hang.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at gem_busy@semaphore.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#12392] / [i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-7/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-5/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb5/igt at gem_ctx_persistence@engines-queued.html * igt at gem_ctx_persistence@smoketest: - shard-glk: NOTRUN -> [DMESG-WARN][25] ([i915#118]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk4/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-2/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][29] ([i915#10030] / [i915#7975] / [i915#8213]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at gem_eio@hibernate.html * igt at gem_eio@reset-stress: - shard-dg2: [PASS][30] -> [FAIL][31] ([i915#12543] / [i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-8/igt at gem_eio@reset-stress.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-4/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][32] ([i915#8898]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb7/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-2/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-5/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-4/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt at gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +9 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at gem_exec_reloc@basic-gtt-wc-noreloc.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-3/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][48] +437 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb2/igt at gem_exec_schedule@thriceslice.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [PASS][49] -> [INCOMPLETE][50] ([i915#11441] / [i915#13304]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-6/igt at gem_exec_suspend@basic-s0 at smem.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-4/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][51] -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg1-12/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#2190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][57] ([i915#2190]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk2/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@parallel-random: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk4/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at gem_lmem_swapping@verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-1/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-6/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +14 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][67] -> [ABORT][68] ([i915#10729]) +1 other test abort [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +7 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][73] ([i915#2658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb5/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk4/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at gem_pread@snoop.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12964]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#13398]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-tglu-1: [PASS][80] -> [SKIP][81] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-1/igt at gem_pxp@protected-raw-src-copy-not-readible.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: [PASS][83] -> [SKIP][84] ([i915#4270]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-8/igt at gem_pxp@reject-modify-context-protection-off-1.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +1 other test timeout [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8428]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-4/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4885]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@noreloc-s3: - shard-glk: [PASS][91] -> [INCOMPLETE][92] ([i915#13306]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-glk9/igt at gem_softpin@noreloc-s3.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk5/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3281] / [i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4958]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at gem_userptr_blits@unsync-unmap-after-close.html - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#13356]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk3/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-3/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-5/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6412]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-6/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-5/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at i915_pm_rps@thresholds-park.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#6245]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#5723]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][116] -> [DMESG-FAIL][117] ([i915#13393]) +1 other test dmesg-fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-3/igt at i915_selftest@live at workarounds.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][118] ([i915#9311]) +1 other test dmesg-warn [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][119] ([i915#4817]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk6/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][121] ([i915#10991]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-1.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-hdmi-a-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#8709]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-a-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#8709]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-4-y-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#8709]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs-cc.html * igt at kms_async_flips@crc: - shard-tglu-1: NOTRUN -> [INCOMPLETE][125] ([i915#13287] / [i915#9878]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [INCOMPLETE][126] ([i915#13287]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html - shard-glk: [PASS][127] -> [INCOMPLETE][128] ([i915#13287]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-glk8/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk7/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [INCOMPLETE][129] ([i915#13287]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#13287] / [i915#13423]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk8/igt at kms_async_flips@crc at pipe-a-hdmi-a-2.html * igt at kms_async_flips@crc at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [CRASH][131] ([i915#13287]) +3 other tests crash [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at kms_async_flips@crc at pipe-c-hdmi-a-3.html * igt at kms_async_flips@crc at pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][132] ([i915#13287]) +3 other tests crash [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_async_flips@crc at pipe-d-hdmi-a-4.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#12967] / [i915#6228]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#10333]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-4/igt at kms_async_flips@test-cursor-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#9531]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#9531]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#9531]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#5286]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#5286]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][143] +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3638]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3638]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-2/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#5190]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at kms_big_fb@y-tiled-addfb.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6187]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-2/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +11 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-8/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs at pipe-a-edp-1.html * igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +162 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-d-hdmi-a-2.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +199 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][153] +407 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk8/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#6095]) +69 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +85 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#6095]) +23 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][157] ([i915#12796]) +2 other tests incomplete [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk9/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#12313]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +39 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#12313]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#12313]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#12313]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3742]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#7213]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7828]) +12 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#7828]) +6 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#7828]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#7828]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#7828]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-2/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#7828]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#7118] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3116] / [i915#3299]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][177] ([i915#7173]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#9424]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9433]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#7116]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#7116] / [i915#9424]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_content_protection@uevent.html - shard-snb: NOTRUN -> [INCOMPLETE][184] ([i915#8816]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][188] -> [DMESG-WARN][189] ([i915#12917] / [i915#12964]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-6/igt at kms_cursor_crc@cursor-onscreen-64x21.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-64x21.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3555]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8814]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8814]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-6/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13046] / [i915#5354]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][200] +26 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-snb: [PASS][201] -> [SKIP][202] +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-snb2/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: NOTRUN -> [FAIL][203] ([i915#2346]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: NOTRUN -> [FAIL][204] ([i915#2346]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk4/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][205] -> [FAIL][206] ([i915#2346]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-6/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9067]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#9067]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#4103]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@torture-move at pipe-b: - shard-rkl: [PASS][210] -> [DMESG-WARN][211] ([i915#12964]) +18 other tests dmesg-warn [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-2/igt at kms_cursor_legacy@torture-move at pipe-b.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_cursor_legacy@torture-move at pipe-b.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9833]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#9723]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#9723]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#9833]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#8588]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#3804]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#12402]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#12402]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3840]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-4/igt at kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3469]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#4854]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][226] ([i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-2/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#9337]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#4881]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9934]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3637]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-8/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_flip@2x-plain-flip-interruptible.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#9934]) +6 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9934]) +6 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@blocking-absolute-wf_vblank at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][240] ([i915#12964]) +7 other tests dmesg-warn [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_flip@blocking-absolute-wf_vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#8381]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [PASS][242] -> [DMESG-FAIL][243] ([i915#12964]) +2 other tests dmesg-fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1: - shard-mtlp: [PASS][244] -> [FAIL][245] ([i915#11989]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-1/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-6/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672] / [i915#3555]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555] / [i915#5190]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#2672]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][258] +41 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][259] +50 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#3458]) +15 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][262] +90 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3458]) +19 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#5439]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8708]) +28 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#8708]) +11 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#3023]) +23 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#1825]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#5354]) +28 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#1825]) +35 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#6118]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-5/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][275] -> [SKIP][276] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-10/igt at kms_hdr@static-toggle-suspend.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#13389]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-3/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#13389]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#10656]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#12339]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#10656]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12394]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12339]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][286] ([i915#12339]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#1839]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][289] ([i915#12756] / [i915#13409]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk3/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12756]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk3/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8806]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][293] ([i915#8292]) +1 other test fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12247]) +4 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#9423]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#12247]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#12247]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#12247] / [i915#6953]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-2/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#12247]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-2/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#3555]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#3555] / [i915#9423]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-a: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12247]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-d: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#12247]) +7 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#5354]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#9812]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9685]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#9685]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3828]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#3828]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#3361]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#8430]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-8/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9519]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#4077]) +11 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_pm_rpm@fences-dpms.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][315] -> [SKIP][316] ([i915#12916]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#9519]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][318] -> [SKIP][319] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-5/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][320] -> [SKIP][321] ([i915#9519]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#6524] / [i915#6805]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-3/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#6524]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#6524]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#11520]) +6 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#11520]) +6 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-18/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +9 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][329] ([i915#11520]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb2/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +9 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][331] ([i915#11520]) +9 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk7/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#12316]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-6/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#9683]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9683]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#9683]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][336] ([i915#9683]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +23 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-pr-suspend: - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#9688]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-7/igt at kms_psr@fbc-pr-suspend.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9732]) +23 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-2/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr-primary-render: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9732]) +9 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +18 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +22 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-14/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#9685]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#12755]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#5289]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][346] ([i915#13179]) +1 other test abort [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-6/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][347] ([i915#13179]) +1 other test abort [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-6/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#8623]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][349] ([i915#8623]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][350] +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12276]) +1 other test incomplete [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk7/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-1/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#2437]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#2437]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][361] ([i915#2437]) +2 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk4/igt at kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][362] ([i915#2437]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-6/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2437] / [i915#9412]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#2437] / [i915#9412]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#2434]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-4/igt at perf@mi-rpc.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#2435]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy-check-all: - shard-mtlp: [PASS][367] -> [FAIL][368] ([i915#4349]) +1 other test fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-2/igt at perf_pmu@busy-check-all.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-7/igt at perf_pmu@busy-check-all.html - shard-dg2: [PASS][369] -> [FAIL][370] ([i915#4349]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-10/igt at perf_pmu@busy-check-all.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at perf_pmu@busy-check-all.html - shard-dg1: [PASS][371] -> [FAIL][372] ([i915#4349]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg1-14/igt at perf_pmu@busy-check-all.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at perf_pmu@busy-check-all.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][373] ([i915#13341]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk6/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#8516]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#3708]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#3708] / [i915#4077]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-2/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#3291] / [i915#3708]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-3/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#3708] / [i915#4077]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-13/igt at prime_vgem@basic-gtt.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#9917]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-1/igt at sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#9917]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][382] ([i915#12910]) +9 other tests fail [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-9/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][383] ([i915#12910]) +9 other tests fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-3/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#9917]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-12/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#4818]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg1-17/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@context-create: - shard-mtlp: [ABORT][386] -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-4/igt at gem_eio@context-create.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-5/igt at gem_eio@context-create.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][388] ([i915#13363]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-3/igt at gem_eio@kms.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-4/igt at gem_eio@kms.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][390] ([i915#7975] / [i915#8213]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-4/igt at gem_exec_suspend@basic-s4-devices.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-11/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][392] -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-10/igt at gem_lmem_swapping@verify-random.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-7/igt at gem_lmem_swapping@verify-random.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: [SKIP][394] ([i915#4270]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-8/igt at gem_pxp@reject-modify-context-protection-off-2.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-7/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][396] ([i915#12964]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-6/igt at gem_workarounds@suspend-resume-fd.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-3/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_selftest@live: - shard-rkl: [DMESG-FAIL][398] ([i915#13342]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-4/igt at i915_selftest@live.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at i915_selftest@live.html - shard-tglu: [ABORT][400] ([i915#12061] / [i915#13010]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-2/igt at i915_selftest@live.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-3/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_pm: - shard-rkl: [DMESG-FAIL][402] ([i915#13338]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-4/igt at i915_selftest@live at gt_pm.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at i915_selftest@live at gt_pm.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [INCOMPLETE][404] ([i915#4817]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-4/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][406] ([i915#13287]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-glk9/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk8/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][408] ([i915#11808]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][410] ([i915#12796]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-glk7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-glk: [FAIL][412] ([i915#2346]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-glk8/igt at kms_cursor_legacy@basic-flip-before-cursor-atomic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-glk4/igt at kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: [DMESG-WARN][414] ([i915#12917] / [i915#12964]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-7/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-7/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][416] ([i915#2346]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][418] ([i915#3555]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-5/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_flip@flip-vs-panning at a-hdmi-a1: - shard-rkl: [DMESG-WARN][420] ([i915#12964]) -> [PASS][421] +38 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-rkl-2/igt at kms_flip@flip-vs-panning at a-hdmi-a1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-rkl-2/igt at kms_flip@flip-vs-panning at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at c-edp1: - shard-mtlp: [FAIL][422] ([i915#11989]) -> [PASS][423] +3 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-mtlp-4/igt at kms_flip@plain-flip-ts-check at c-edp1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-mtlp-7/igt at kms_flip@plain-flip-ts-check at c-edp1.html * igt at kms_flip@plain-flip-ts-check at d-hdmi-a1: - shard-tglu: [FAIL][424] ([i915#11989]) -> [PASS][425] +4 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-tglu-10/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-tglu-10/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][426] ([i915#6880]) -> [PASS][427] +3 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-snb: [SKIP][428] -> [PASS][429] +2 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt at kms_hdr@static-toggle: - shard-dg2: [SKIP][430] ([i915#3555] / [i915#8228]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-6/igt at kms_hdr@static-toggle.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_hdr@static-toggle.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [SKIP][432] ([i915#12388]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15902/shard-dg2-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-rkl: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12385/index.html From lucas.demarchi at intel.com Sat Jan 4 06:26:27 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Sat, 4 Jan 2025 00:26:27 -0600 Subject: [PATCH i-g-t v6] tests/kms_histogram: Added IGT support to validate global histogram In-Reply-To: <20241211203119.260449-1-mohammed.thasleem@intel.com> References: <20241211193652.208427-1-mohammed.thasleem@intel.com> <20241211203119.260449-1-mohammed.thasleem@intel.com> Message-ID: On Thu, Dec 12, 2024 at 02:01:19AM +0530, Mohammed Thasleem wrote: >+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob, >+ igt_output_t *output) >+{ >+ struct globalhist_args *argsPtr = >+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args)); >+ >+ drmModeModeInfo *mode; >+ >+ mode = igt_output_get_mode(output); >+ >+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length); >+ argsPtr->resolution_x = mode->hdisplay; >+ argsPtr->resolution_y = mode->vdisplay; >+ >+ igt_debug("Making call to global histogram algorithm.\n"); >+ histogram_compute_generate_data_bin(argsPtr); ../tests/kms_histogram.c: In function ?algo_get_pixel_factor?: ../tests/kms_histogram.c:166:9: error: implicit declaration of function ?histogram_compute_generate_data_bin? [-Wimplicit-function-declaration] 166 | histogram_compute_generate_data_bin(argsPtr); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../tests/kms_histogram.c:166:9: warning: nested extern declaration of ?histogram_compute_generate_data_bin? [-Wnested-externs] Looking at ghe.h in Ubuntu 24.10, it seems this function doesn't exist. I thought the dep was missing a version check, but checking https://github.com/intel/ghe it seems it never existed. What am I missing? Lucas De Marchi From patchwork at emeril.freedesktop.org Sat Jan 4 06:48:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 06:48:52 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/igt=5Faux=2Ec=3A_since?= =?utf-8?q?_procps-ng_4=2E0=2E5=2C_PIDS=5FVAL=28=29_takes_3_arguments=2C_not?= =?utf-8?q?_4?= In-Reply-To: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: <173597333268.3016436.4921507965077603716@b555e5b46a47> == Series Details == Series: lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 URL : https://patchwork.freedesktop.org/series/143106/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12385_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12385_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12385_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12385_full: ### IGT changes ### #### Possible regressions #### * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-256x256.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][4] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][5] -> [FAIL][6] +2 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html Known issues ------------ Here are the changes found in XEIGTPW_12385_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-dg2-set2: [PASS][7] -> [FAIL][8] ([Intel XE#3440]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_getversion@basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at core_getversion@basic.html * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#1885]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][11] -> [FAIL][12] ([Intel XE#3249]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at core_setmaster@master-drop-set-user.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2134]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at fbdev@info.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3157]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#3719]) +3 other tests fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2423] / [i915#2575]) +20 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_atomic@plane-invalid-params-fence.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3279]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3658]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-2/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#2136] / [Intel XE#2351]) +26 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +56 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1178]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2341]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-3/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3278]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2423]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-32x10.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2321]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2321]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][53] ([Intel XE#3878]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#309]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][55] ([Intel XE#3226]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#877]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#1475]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-2/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2423]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#2141]) +2 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3383]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#2882] / [Intel XE#3288]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3288] / [Intel XE#3321]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +3 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1421]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][73] ([Intel XE#2635]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#2882]) +4 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][76] ([Intel XE#2597]) +1 other test incomplete [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp2: - shard-bmg: NOTRUN -> [FAIL][77] ([Intel XE#3879]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at c-dp2.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a3: - shard-bmg: [PASS][78] -> [INCOMPLETE][79] ([Intel XE#2597]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at a-hdmi-a3.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at kms_flip@flip-vs-suspend at a-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2136]) +76 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2136]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1397]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#651]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2311]) +14 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][91] ([Intel XE#2333]) +7 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#651]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#656]) +20 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2352]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2313]) +24 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1469]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#1503]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_hdr@invalid-hdr.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1503]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#3898]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#346]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2927]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2927]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +14 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#718]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2499]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#2446]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2136]) +21 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1489]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#3414]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][123] -> [SKIP][124] ([Intel XE#2423] / [i915#2575]) +247 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@sprite-rotation-180.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_rotation_crc@sprite-rotation-180.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2413]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1435]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#362]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1499]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#756]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#756]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at kms_writeback@writeback-pixel-formats.html * igt at testdisplay: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#2423]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at testdisplay.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at testdisplay.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][133] ([Intel XE#3869]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_drm_fdinfo@utilization-others-idle: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1130]) +35 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_drm_fdinfo@utilization-others-idle.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at xe_eudebug@basic-vm-access.html - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3889]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-8/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#688]) +7 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-3/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][140] ([Intel XE#2364]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][141] ([Intel XE#1600]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [PASS][142] -> [SKIP][143] ([Intel XE#1130]) +445 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_balancer@once-parallel-rebind.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_exec_balancer@once-parallel-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2322]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_compute_mode@once-bindexecqueue-userptr: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#1130]) +10 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_exec_compute_mode@once-bindexecqueue-userptr.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at xe_exec_compute_mode@once-bindexecqueue-userptr.html * igt at xe_exec_fault_mode@many-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#288]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at xe_exec_fault_mode@many-invalid-userptr-fault.html * igt at xe_exec_threads@threads-fd-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1130]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at xe_exec_threads@threads-fd-userptr-invalidate.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_live_ktest@xe_bo.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_live_ktest@xe_bo.html - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1192]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [PASS][153] -> [SKIP][154] ([Intel XE#2229]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#378]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-2/igt at xe_module_load@force-load.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-435/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1420] / [Intel XE#2838]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2284]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#584]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2284] / [Intel XE#366]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-2/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#944]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#944]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#944]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3342]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][165] ([Intel XE#2882]) -> [PASS][166] +2 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [FAIL][167] ([Intel XE#3321]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][169] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][171] ([Intel XE#2597]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][173] -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][175] -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][177] ([Intel XE#1035]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-4/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][179] ([Intel XE#361]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][181] ([Intel XE#718]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][183] ([Intel XE#3313]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-3/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][185] -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][187] ([Intel XE#2883]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][189] ([Intel XE#899]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][191] ([Intel XE#3865]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-7/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][193] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-3/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][195] ([Intel XE#3088]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][197] -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][199] ([Intel XE#958]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][201] ([Intel XE#3781]) -> [INCOMPLETE][202] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][203] ([Intel XE#3781]) -> [INCOMPLETE][204] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][205] ([Intel XE#3768]) -> [SKIP][206] ([Intel XE#2423] / [i915#2575]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][207] ([Intel XE#2327]) -> [SKIP][208] ([Intel XE#2136]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html * igt at kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][209] ([Intel XE#316]) -> [SKIP][210] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][211] ([Intel XE#316]) -> [SKIP][212] ([Intel XE#2136]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][213] ([Intel XE#1124]) -> [SKIP][214] ([Intel XE#2136]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][215] ([Intel XE#607]) -> [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][217] ([Intel XE#1124]) -> [SKIP][218] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][219] ([Intel XE#1124]) -> [SKIP][220] ([Intel XE#2136]) +15 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][221] ([Intel XE#619]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][223] ([Intel XE#607]) -> [SKIP][224] ([Intel XE#2136]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][225] ([Intel XE#610]) -> [SKIP][226] ([Intel XE#2136]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][227] ([Intel XE#367]) -> [SKIP][228] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][229] ([Intel XE#2191]) -> [SKIP][230] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][231] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#2136]) +25 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html - shard-bmg: [SKIP][233] ([Intel XE#2887]) -> [SKIP][234] ([Intel XE#2136]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][235] ([Intel XE#2907]) -> [SKIP][236] ([Intel XE#2136]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][237] ([Intel XE#3442]) -> [SKIP][238] ([Intel XE#2136]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][239] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][241] ([Intel XE#2724]) -> [SKIP][242] ([Intel XE#2136]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_cdclk@mode-transition.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][243] ([Intel XE#314]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2351]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][245] ([Intel XE#306]) -> [SKIP][246] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@ctm-0-75.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-bmg: [SKIP][247] ([Intel XE#2252]) -> [SKIP][248] ([Intel XE#2423]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_chamelium_frames@vga-frame-dump.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][249] ([Intel XE#373]) -> [SKIP][250] ([Intel XE#2423] / [i915#2575]) +31 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][251] ([Intel XE#1178]) -> [SKIP][252] ([Intel XE#2423] / [i915#2575]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_content_protection@atomic-dpms.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][253] ([Intel XE#307]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_content_protection@dp-mst-type-0.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][255] ([Intel XE#1188]) -> [SKIP][256] ([Intel XE#2423] / [i915#2575]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@uevent.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][257] ([Intel XE#308]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x170.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][259] ([Intel XE#323]) -> [SKIP][260] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][261] ([Intel XE#776]) -> [SKIP][262] ([Intel XE#2136]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_fbcon_fbt@psr-suspend.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][263] ([Intel XE#701]) -> [SKIP][264] ([Intel XE#2423] / [i915#2575]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@chamelium.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][265] ([Intel XE#703]) -> [SKIP][266] ([Intel XE#2423] / [i915#2575]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-3x.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][267] ([Intel XE#1138]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-4x.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][269] ([Intel XE#1135]) -> [SKIP][270] ([Intel XE#2423] / [i915#2575]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_feature_discovery@psr1.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][271] ([Intel XE#301]) -> [SKIP][272] ([Intel XE#2423] / [i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][273] ([Intel XE#455]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][275] ([Intel XE#455]) -> [SKIP][276] ([Intel XE#2136]) +10 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][277] ([Intel XE#651]) -> [SKIP][278] ([Intel XE#2136]) +54 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][279] ([Intel XE#2311]) -> [SKIP][280] ([Intel XE#2136]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][281] ([Intel XE#651]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2351]) +26 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][283] ([Intel XE#877]) -> [FAIL][284] ([Intel XE#2333]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [FAIL][285] ([Intel XE#2333]) -> [SKIP][286] ([Intel XE#2136]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][287] ([Intel XE#658]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][289] ([Intel XE#2313]) -> [SKIP][290] ([Intel XE#2136]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][291] ([Intel XE#653]) -> [SKIP][292] ([Intel XE#2136]) +61 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][293] ([Intel XE#653]) -> [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) +23 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][295] ([Intel XE#605]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][297] ([Intel XE#2934]) -> [SKIP][298] ([Intel XE#2136]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][299] ([Intel XE#2925]) -> [SKIP][300] ([Intel XE#2136]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-force-ultra-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][301] ([Intel XE#346]) -> [SKIP][302] ([Intel XE#2136]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@invalid-modeset-big-joiner.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][303] ([Intel XE#356]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][305] ([Intel XE#616]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@primary.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_plane_cursor@primary.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][307] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][308] ([Intel XE#2423] / [i915#2575]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][309] ([Intel XE#870]) -> [SKIP][310] ([Intel XE#2136]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_backlight@fade.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][311] ([Intel XE#3309]) -> [SKIP][312] ([Intel XE#2136]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_dc@dc5-retention-flops.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][313] ([Intel XE#1129]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][315] ([Intel XE#1489]) -> [SKIP][316] ([Intel XE#2136]) +20 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][317] ([Intel XE#1122]) -> [SKIP][318] ([Intel XE#2136]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][319] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@fbc-psr-sprite-plane-move.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][321] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][322] ([Intel XE#2136]) +29 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-move.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][323] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][324] ([Intel XE#2351]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@psr-primary-page-flip.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-sprite-plane-move: - shard-bmg: [SKIP][325] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][326] ([Intel XE#2136]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_psr@psr-sprite-plane-move.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][327] ([Intel XE#2939]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2351]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][329] ([Intel XE#2330]) -> [SKIP][330] ([Intel XE#2423]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-dg2-set2: [SKIP][331] ([Intel XE#1127]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][333] ([Intel XE#3414]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][335] ([Intel XE#362]) -> [FAIL][336] ([Intel XE#1729]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][337] ([Intel XE#1500]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][339] ([Intel XE#330]) -> [SKIP][340] ([Intel XE#2423] / [i915#2575]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr: - shard-dg2-set2: [SKIP][341] ([Intel XE#2168]) -> [SKIP][342] ([Intel XE#2423] / [i915#2575]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_vrr@cmrr.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][343] ([Intel XE#455]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) +22 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_vrr@flip-dpms.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][345] ([Intel XE#756]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][347] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][348] ([Intel XE#2423] / [i915#2575]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][349] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][350] ([Intel XE#1130]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][351] ([Intel XE#1123]) -> [SKIP][352] ([Intel XE#1130]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0x3fff.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][353] ([Intel XE#1126]) -> [SKIP][354] ([Intel XE#1130]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfd.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][355] ([Intel XE#3889]) -> [SKIP][356] ([Intel XE#1130]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-race: - shard-bmg: [SKIP][357] ([Intel XE#2905]) -> [SKIP][358] ([Intel XE#1130]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_eudebug@discovery-race.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-bmg-8/igt at xe_eudebug@discovery-race.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: [SKIP][359] ([Intel XE#2905]) -> [SKIP][360] ([Intel XE#1130]) +28 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][361] ([Intel XE#1473]) -> [SKIP][362] ([Intel XE#1130]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][363] ([Intel XE#288]) -> [SKIP][364] ([Intel XE#1130]) +67 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][365] ([Intel XE#2360]) -> [SKIP][366] ([Intel XE#1130]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][367] ([Intel XE#560]) -> [SKIP][368] ([Intel XE#1130]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_media_fill@media-fill.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_media_fill@media-fill.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: [SKIP][369] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][370] ([Intel XE#1130]) +22 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_oa@whitelisted-registers-userspace-config.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][371] ([Intel XE#1337]) -> [SKIP][372] ([Intel XE#1130]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@display-vs-wb-transient.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][373] ([Intel XE#977]) -> [SKIP][374] ([Intel XE#1130]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pat@pat-index-xe2.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][375] ([Intel XE#979]) -> [SKIP][376] ([Intel XE#1130]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][377] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][378] ([Intel XE#1130]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mmap-system.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][379] ([Intel XE#2284]) -> [SKIP][380] ([Intel XE#1130]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mocs.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_pm@d3cold-mocs.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][381] ([Intel XE#944]) -> [SKIP][382] ([Intel XE#1130]) +8 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_query@multigpu-query-uc-fw-version-guc.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][383] ([Intel XE#3342]) -> [SKIP][384] ([Intel XE#1130]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][385] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][386] ([Intel XE#1130]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3878]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3878 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12385 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2434-eaac387c7c9ff315ce63b390715371fdbb86b845 IGTPW_12385: 9f108fec336b588b7d2c981d0026302935398534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2434-eaac387c7c9ff315ce63b390715371fdbb86b845: eaac387c7c9ff315ce63b390715371fdbb86b845 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12385/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From lucas.demarchi at intel.com Sat Jan 4 07:15:42 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:42 -0800 Subject: [PATCH i-g-t 2/8] lib/xe/xe_gt: Fix header guards and boilerplate In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-2-lucas.demarchi@intel.com> Add proper header guard and remove author from comment: authorship is maintained in git, not as comment. Signed-off-by: Lucas De Marchi --- lib/xe/xe_gt.c | 3 --- lib/xe/xe_gt.h | 8 +++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index 1f4b42ed9..53554beb0 100644 --- a/lib/xe/xe_gt.c +++ b/lib/xe/xe_gt.c @@ -1,9 +1,6 @@ /* SPDX-License-Identifier: MIT */ /* * Copyright ? 2023 Intel Corporation - * - * Authors: - * Janga Rahul Kumar */ #include diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h index a4bb85679..756b5f38e 100644 --- a/lib/xe/xe_gt.h +++ b/lib/xe/xe_gt.h @@ -1,11 +1,11 @@ /* SPDX-License-Identifier: MIT */ /* * Copyright ? 2023 Intel Corporation - * - * Authors: - * Janga Rahul Kumar */ +#ifndef XE_GT_H +#define XE_GT_H + #include "lib/igt_gt.h" bool has_xe_gt_reset(int fd); @@ -14,3 +14,5 @@ igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, unsigned int flags); void xe_post_hang_ring(int fd, igt_hang_t arg); int xe_gt_stats_get_count(int fd, int gt, const char *stat); + +#endif -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:45 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:45 -0800 Subject: [PATCH i-g-t 5/8] lib/xe: Split nsec to ticks abstraction In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-5-lucas.demarchi@intel.com> There are 2 things happening here: one is converting time in nanoseconds to ticks by using the refclock, and another asserting a spin duration is not so close to the maximum duration since there needs to be room for context switch. Move the time conversion to xe_util.c and adjust it to maintain namespace and have better names. Places that do the time conversion to pass to xe_spin then use the xe_spin_nsec_to_ticks() wrapper to calculate the ticks. Signed-off-by: Lucas De Marchi --- benchmarks/gem_wsim.c | 8 +++--- lib/xe/xe_spin.c | 47 +++++++++------------------------ lib/xe/xe_spin.h | 9 +++---- lib/xe/xe_util.c | 40 ++++++++++++++++++++++++++++ lib/xe/xe_util.h | 2 ++ tests/intel/xe_exec_mix_modes.c | 3 ++- tests/intel/xe_spin_batch.c | 2 +- 7 files changed, 66 insertions(+), 45 deletions(-) diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c index c4fd00a6a..454b6f017 100644 --- a/benchmarks/gem_wsim.c +++ b/benchmarks/gem_wsim.c @@ -1797,8 +1797,8 @@ xe_alloc_step_batch(struct workload *wrk, struct w_step *w) xe_vm_bind_sync(fd, vm->id, w->bb_handle, 0, w->xe.exec.address, w->bb_size); xe_spin_init_opts(&w->xe.data->spin, .addr = w->xe.exec.address, .preempt = (w->preempt_us > 0), - .ctx_ticks = duration_to_ctx_ticks(fd, eq->hwe_list[0].gt_id, - 1000LL * get_duration(wrk, w))); + .ctx_ticks = xe_spin_nsec_to_ticks(fd, eq->hwe_list[0].gt_id, + 1000LL * get_duration(wrk, w))); w->xe.exec.exec_queue_id = eq->id; w->xe.exec.num_batch_buffer = 1; /* always at least one out fence */ @@ -2655,8 +2655,8 @@ static void do_xe_exec(struct workload *wrk, struct w_step *w) xe_spin_init_opts(&w->xe.data->spin, .addr = w->xe.exec.address, .preempt = (w->preempt_us > 0), - .ctx_ticks = duration_to_ctx_ticks(fd, eq->hwe_list[0].gt_id, - 1000LL * get_duration(wrk, w))); + .ctx_ticks = xe_spin_nsec_to_ticks(fd, eq->hwe_list[0].gt_id, + 1000LL * get_duration(wrk, w))); xe_exec(fd, &w->xe.exec); } diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c index 2bde55856..333f8d7d8 100644 --- a/lib/xe/xe_spin.c +++ b/lib/xe/xe_spin.c @@ -13,43 +13,12 @@ #include "igt_core.h" #include "igt_syncobj.h" #include "intel_reg.h" + #include "xe_ioctl.h" #include "xe_spin.h" +#include "xe_util.h" -static uint32_t read_timestamp_frequency(int fd, int gt_id) -{ - struct xe_device *dev = xe_device_get(fd); - - igt_assert(dev && dev->gt_list && dev->gt_list->num_gt); - igt_assert(gt_id >= 0 && gt_id <= dev->gt_list->num_gt); - - return dev->gt_list->gt_list[gt_id].reference_clock; -} - -static uint64_t div64_u64_round_up(const uint64_t x, const uint64_t y) -{ - igt_assert(y > 0); - igt_assert_lte_u64(x, UINT64_MAX - (y - 1)); - - return (x + y - 1) / y; -} - -/** - * duration_to_ctx_ticks: - * @fd: opened device - * @gt_id: tile id - * @duration_ns: duration in nanoseconds to be converted to context timestamp ticks - * @return: duration converted to context timestamp ticks. - */ -uint32_t duration_to_ctx_ticks(int fd, int gt_id, uint64_t duration_ns) -{ - uint32_t f = read_timestamp_frequency(fd, gt_id); - uint64_t ctx_ticks = div64_u64_round_up(duration_ns * f, NSEC_PER_SEC); - - igt_assert_lt_u64(ctx_ticks, XE_SPIN_MAX_CTX_TICKS); - - return ctx_ticks; -} +#define XE_SPIN_MAX_CTX_TICKS (UINT32_MAX - 1000) #define MI_SRM_CS_MMIO (1 << 19) #define MI_LRI_CS_MMIO (1 << 19) @@ -60,6 +29,16 @@ uint32_t duration_to_ctx_ticks(int fd, int gt_id, uint64_t duration_ns) enum { START_TS, NOW_TS }; + +uint32_t xe_spin_nsec_to_ticks(int fd, int gt_id, uint64_t nsec) +{ + uint32_t ticks = xe_nsec_to_ticks(fd, gt_id, nsec); + + igt_assert_lt_u64(ticks, XE_SPIN_MAX_CTX_TICKS); + + return ticks; +} + /** * xe_spin_init: * @spin: pointer to mapped bo in which spinner code will be written diff --git a/lib/xe/xe_spin.h b/lib/xe/xe_spin.h index 593065bc0..01f45eaeb 100644 --- a/lib/xe/xe_spin.h +++ b/lib/xe/xe_spin.h @@ -15,10 +15,8 @@ #include "xe_query.h" #include "lib/igt_dummyload.h" -#define XE_SPIN_MAX_CTX_TICKS (UINT32_MAX - 1000) - -/** struct xe_spin_opts - * +/** + * struct xe_spin_opts * @addr: offset of spinner within vm * @preempt: allow spinner to be preempted or not * @ctx_ticks: number of ticks after which spinner is stopped, applied if > 0 @@ -68,7 +66,6 @@ struct xe_cork { }; igt_spin_t *xe_spin_create(int fd, const struct igt_spin_factory *opt); -uint32_t duration_to_ctx_ticks(int fd, int gt_id, uint64_t ns); void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts); struct xe_cork * xe_cork_create(int fd, struct drm_xe_engine_class_instance *hwe, uint32_t vm, @@ -82,6 +79,8 @@ void xe_cork_destroy(int fd, struct xe_cork *ctx); #define xe_spin_init_opts(fd, ...) \ xe_spin_init(fd, &((struct xe_spin_opts){__VA_ARGS__})) +uint32_t xe_spin_nsec_to_ticks(int fd, int gt_id, uint64_t nsec); + bool xe_spin_started(struct xe_spin *spin); void xe_spin_sync_wait(int fd, struct igt_spin *spin); void xe_spin_wait_started(struct xe_spin *spin); diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c index f0b6bbb2d..06b378ce0 100644 --- a/lib/xe/xe_util.c +++ b/lib/xe/xe_util.c @@ -4,9 +4,11 @@ */ #include "igt.h" +#include "igt_core.h" #include "igt_syncobj.h" #include "igt_sysfs.h" #include "intel_pat.h" + #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xe/xe_util.h" @@ -235,3 +237,41 @@ void xe_bind_unbind_async(int xe, uint32_t vm, uint32_t bind_engine, free(bind_ops); } + +static uint32_t reference_clock(int fd, int gt_id) +{ + struct xe_device *dev = xe_device_get(fd); + uint32_t refclock; + + igt_assert(dev && dev->gt_list && dev->gt_list->num_gt); + igt_assert(gt_id >= 0 && gt_id <= dev->gt_list->num_gt); + + refclock = dev->gt_list->gt_list[gt_id].reference_clock; + + igt_assert_lt(0, refclock); + + return refclock; +} + +static uint64_t div64_u64_round_up(const uint64_t x, const uint64_t y) +{ + igt_assert(y > 0); + igt_assert_lte_u64(x, UINT64_MAX - (y - 1)); + + return (x + y - 1) / y; +} + +/** + * xe_nsec_to_ticks: convert time in nanoseconds to timestamp ticks + * @fd: opened device + * @gt_id: tile id + * @nsec: time in nanoseconds + * + * Return: Time converted to context timestamp ticks. + */ +uint32_t xe_nsec_to_ticks(int fd, int gt_id, uint64_t nsec) +{ + uint32_t refclock = reference_clock(fd, gt_id); + + return div64_u64_round_up(nsec * refclock, NSEC_PER_SEC); +} diff --git a/lib/xe/xe_util.h b/lib/xe/xe_util.h index c544d912f..06ebd3c2a 100644 --- a/lib/xe/xe_util.h +++ b/lib/xe/xe_util.h @@ -47,4 +47,6 @@ void xe_bind_unbind_async(int fd, uint32_t vm, uint32_t bind_engine, struct igt_list_head *obj_list, uint32_t sync_in, uint32_t sync_out); +uint32_t xe_nsec_to_ticks(int fd, int gt_id, uint64_t ns); + #endif /* XE_UTIL_H */ diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c index eeae9d122..0bcd49cc0 100644 --- a/tests/intel/xe_exec_mix_modes.c +++ b/tests/intel/xe_exec_mix_modes.c @@ -22,6 +22,7 @@ #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xe/xe_spin.h" +#include "xe/xe_util.h" #include #define FLAG_EXEC_MODE_LR (0x1 << 0) @@ -132,7 +133,7 @@ run_job(int fd, struct drm_xe_engine_class_instance *hwe, if (job_type == SPINNER_INTERRUPTED) { spin_opts.addr = addr + (char *)&data[SPIN_DATA].spin - (char *)data; - spin_opts.ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns); + spin_opts.ctx_ticks = xe_spin_nsec_to_ticks(fd, 0, duration_ns); xe_spin_init(&data[SPIN_DATA].spin, &spin_opts); if (engine_execution_mode == EXEC_MODE_LR) sync[0].addr = addr + (char *)&data[SPIN_DATA].exec_sync - (char *)data; diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c index 0ad2490a0..5d9afaf3d 100644 --- a/tests/intel/xe_spin_batch.c +++ b/tests/intel/xe_spin_batch.c @@ -277,7 +277,7 @@ static void xe_spin_fixed_duration(int fd, int gt, int class, int flags) xe_vm_bind_sync(fd, vm, bo, 0, spin_addr, bo_size); xe_spin_init_opts(spin, .addr = spin_addr, .preempt = true, - .ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns)); + .ctx_ticks = xe_spin_nsec_to_ticks(fd, 0, duration_ns)); exec.address = spin_addr; exec.exec_queue_id = exec_queue; -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:46 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:46 -0800 Subject: [PATCH i-g-t 6/8] lib/xe/xe_spin: Move declarations around In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-6-lucas.demarchi@intel.com> xe_spin.h has 3 abstractions: 1) the integration with igt_dummyload 2) xe_spin, the bo to be exec'ed somewhere 3) xe_cork, that resembles more the igt_spin, abstracting the fd, vm, bind, etc Group them so it's easier to understand each one. Signed-off-by: Lucas De Marchi --- lib/xe/xe_spin.c | 2 +- lib/xe/xe_spin.h | 54 +++++++++++++++++++++++++++--------------------- 2 files changed, 32 insertions(+), 24 deletions(-) diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c index 333f8d7d8..bb6318cef 100644 --- a/lib/xe/xe_spin.c +++ b/lib/xe/xe_spin.c @@ -232,7 +232,7 @@ xe_spin_create(int fd, const struct igt_spin_factory *opt) return spin; } -void xe_spin_sync_wait(int fd, struct igt_spin *spin) +static void xe_spin_sync_wait(int fd, struct igt_spin *spin) { igt_assert(syncobj_wait(fd, &spin->syncobj, 1, INT64_MAX, 0, NULL)); } diff --git a/lib/xe/xe_spin.h b/lib/xe/xe_spin.h index 01f45eaeb..7c95996c3 100644 --- a/lib/xe/xe_spin.h +++ b/lib/xe/xe_spin.h @@ -15,6 +15,15 @@ #include "xe_query.h" #include "lib/igt_dummyload.h" +/* Wrapper to integrate with igt_dummyload, aka igt_spin */ +igt_spin_t *xe_spin_create(int fd, const struct igt_spin_factory *opt); +void xe_spin_free(int fd, struct igt_spin *spin); + +/* + * xe_spin: abstract a bo mapped in the GPU that when exec'ed will spin the + * engine in which it's exec'ed + */ + /** * struct xe_spin_opts * @addr: offset of spinner within vm @@ -30,11 +39,6 @@ struct xe_spin_opts { bool write_timestamp; }; -struct xe_cork_opts { - uint64_t ahnd; - bool debug; -}; - /* Mapped GPU object */ struct xe_spin { uint32_t batch[128]; @@ -46,6 +50,24 @@ struct xe_spin { uint32_t timestamp; }; +uint32_t xe_spin_nsec_to_ticks(int fd, int gt_id, uint64_t nsec); +void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts); +#define xe_spin_init_opts(fd, ...) \ + xe_spin_init(fd, &((struct xe_spin_opts){__VA_ARGS__})) +bool xe_spin_started(struct xe_spin *spin); +void xe_spin_wait_started(struct xe_spin *spin); +void xe_spin_end(struct xe_spin *spin); + +/* + * xe_cork: higher level API that simplifies exec'ing an xe_spin by taking care + * of vm creation, exec call, etc. + */ + +struct xe_cork_opts { + uint64_t ahnd; + bool debug; +}; + struct xe_cork { struct xe_spin *spin; int fd; @@ -65,27 +87,13 @@ struct xe_cork { uint16_t num_placements; }; -igt_spin_t *xe_spin_create(int fd, const struct igt_spin_factory *opt); -void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts); -struct xe_cork * -xe_cork_create(int fd, struct drm_xe_engine_class_instance *hwe, uint32_t vm, - uint16_t width, uint16_t num_placements, struct xe_cork_opts *opts); -void xe_cork_destroy(int fd, struct xe_cork *ctx); - +struct xe_cork *xe_cork_create(int fd, struct drm_xe_engine_class_instance *hwe, + uint32_t vm, uint16_t width, uint16_t num_placements, + struct xe_cork_opts *opts); #define xe_cork_create_opts(fd, hwe, vm, width, num_placements, ...) \ xe_cork_create(fd, hwe, vm, width, num_placements, \ &((struct xe_cork_opts){__VA_ARGS__})) - -#define xe_spin_init_opts(fd, ...) \ - xe_spin_init(fd, &((struct xe_spin_opts){__VA_ARGS__})) - -uint32_t xe_spin_nsec_to_ticks(int fd, int gt_id, uint64_t nsec); - -bool xe_spin_started(struct xe_spin *spin); -void xe_spin_sync_wait(int fd, struct igt_spin *spin); -void xe_spin_wait_started(struct xe_spin *spin); -void xe_spin_end(struct xe_spin *spin); -void xe_spin_free(int fd, struct igt_spin *spin); +void xe_cork_destroy(int fd, struct xe_cork *ctx); void xe_cork_sync_start(int fd, struct xe_cork *ctx); void xe_cork_sync_end(int fd, struct xe_cork *ctx); -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:47 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:47 -0800 Subject: [PATCH i-g-t 7/8] treewide: s/ctx/cork/ when referring to xe_cork In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-7-lucas.demarchi@intel.com> Commit 2feb1d6718a1 ("lib/xe/xe_spin: move the spinner related functions to lib") extracted the spin_ctx abstraction from xe_drm_fdinfo to be re-used in other places as part of the xe_cork. Complement it by also renaming the variable s/ctx/cork/ when referring to struct xe_cork. Signed-off-by: Lucas De Marchi --- lib/xe/xe_spin.c | 158 ++++++++++++++++++------------------ tests/intel/xe_drm_fdinfo.c | 74 ++++++++--------- tests/intel/xe_spin_batch.c | 14 ++-- tests/intel/xe_vm.c | 12 +-- 4 files changed, 129 insertions(+), 129 deletions(-) diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c index bb6318cef..0de0b1f2e 100644 --- a/lib/xe/xe_spin.c +++ b/lib/xe/xe_spin.c @@ -291,148 +291,148 @@ xe_cork_create(int fd, struct drm_xe_engine_class_instance *hwe, uint32_t vm, uint16_t width, uint16_t num_placements, struct xe_cork_opts *opts) { - struct xe_cork *ctx = calloc(1, sizeof(*ctx)); + struct xe_cork *cork = calloc(1, sizeof(*cork)); - igt_assert(ctx); + igt_assert(cork); igt_assert(width && num_placements && (width == 1 || num_placements == 1)); igt_assert_lt(width, XE_MAX_ENGINE_INSTANCE); - ctx->class = hwe->engine_class; - ctx->width = width; - ctx->num_placements = num_placements; - ctx->vm = vm; - ctx->cork_opts = *opts; - - ctx->exec.num_batch_buffer = width; - ctx->exec.num_syncs = 2; - ctx->exec.syncs = to_user_pointer(ctx->sync); - - ctx->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ; - ctx->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL; - ctx->sync[0].handle = syncobj_create(fd, 0); - - ctx->sync[1].type = DRM_XE_SYNC_TYPE_SYNCOBJ; - ctx->sync[1].flags = DRM_XE_SYNC_FLAG_SIGNAL; - ctx->sync[1].handle = syncobj_create(fd, 0); - - ctx->bo_size = sizeof(struct xe_spin); - ctx->bo_size = xe_bb_size(fd, ctx->bo_size); - ctx->bo = xe_bo_create(fd, ctx->vm, ctx->bo_size, - vram_if_possible(fd, hwe->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); - if (ctx->cork_opts.ahnd) { + cork->class = hwe->engine_class; + cork->width = width; + cork->num_placements = num_placements; + cork->vm = vm; + cork->cork_opts = *opts; + + cork->exec.num_batch_buffer = width; + cork->exec.num_syncs = 2; + cork->exec.syncs = to_user_pointer(cork->sync); + + cork->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ; + cork->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL; + cork->sync[0].handle = syncobj_create(fd, 0); + + cork->sync[1].type = DRM_XE_SYNC_TYPE_SYNCOBJ; + cork->sync[1].flags = DRM_XE_SYNC_FLAG_SIGNAL; + cork->sync[1].handle = syncobj_create(fd, 0); + + cork->bo_size = sizeof(struct xe_spin); + cork->bo_size = xe_bb_size(fd, cork->bo_size); + cork->bo = xe_bo_create(fd, cork->vm, cork->bo_size, + vram_if_possible(fd, hwe->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + if (cork->cork_opts.ahnd) { for (unsigned int i = 0; i < width; i++) - ctx->addr[i] = intel_allocator_alloc_with_strategy(ctx->cork_opts.ahnd, - ctx->bo, ctx->bo_size, 0, + cork->addr[i] = intel_allocator_alloc_with_strategy(cork->cork_opts.ahnd, + cork->bo, cork->bo_size, 0, ALLOC_STRATEGY_LOW_TO_HIGH); } else { for (unsigned int i = 0; i < width; i++) - ctx->addr[i] = 0x100000 + 0x100000 * hwe->engine_class; + cork->addr[i] = 0x100000 + 0x100000 * hwe->engine_class; } - ctx->spin = xe_bo_map(fd, ctx->bo, ctx->bo_size); + cork->spin = xe_bo_map(fd, cork->bo, cork->bo_size); - igt_assert_eq(__xe_exec_queue_create(fd, ctx->vm, width, num_placements, - hwe, 0, &ctx->exec_queue), 0); + igt_assert_eq(__xe_exec_queue_create(fd, cork->vm, width, num_placements, + hwe, 0, &cork->exec_queue), 0); - xe_vm_bind_async(fd, ctx->vm, 0, ctx->bo, 0, ctx->addr[0], ctx->bo_size, - ctx->sync, 1); + xe_vm_bind_async(fd, cork->vm, 0, cork->bo, 0, cork->addr[0], cork->bo_size, + cork->sync, 1); - return ctx; + return cork; } /** * xe_cork_sync_start: * * @fd: xe device fd - * @ctx: pointer to xe_cork structure + * @cork: pointer to xe_cork structure * * run the spinner using xe_spin_init submit batch using xe_exec * and wait for fence using syncobj_wait */ -void xe_cork_sync_start(int fd, struct xe_cork *ctx) +void xe_cork_sync_start(int fd, struct xe_cork *cork) { - igt_assert(ctx); + igt_assert(cork); - ctx->spin_opts.addr = ctx->addr[0]; - ctx->spin_opts.write_timestamp = true; - ctx->spin_opts.preempt = true; - xe_spin_init(ctx->spin, &ctx->spin_opts); + cork->spin_opts.addr = cork->addr[0]; + cork->spin_opts.write_timestamp = true; + cork->spin_opts.preempt = true; + xe_spin_init(cork->spin, &cork->spin_opts); /* reuse sync[0] as in-fence for exec */ - ctx->sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; + cork->sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; - ctx->exec.exec_queue_id = ctx->exec_queue; + cork->exec.exec_queue_id = cork->exec_queue; - if (ctx->width > 1) - ctx->exec.address = to_user_pointer(ctx->addr); + if (cork->width > 1) + cork->exec.address = to_user_pointer(cork->addr); else - ctx->exec.address = ctx->addr[0]; + cork->exec.address = cork->addr[0]; - xe_exec(fd, &ctx->exec); + xe_exec(fd, &cork->exec); - xe_spin_wait_started(ctx->spin); - igt_assert(!syncobj_wait(fd, &ctx->sync[1].handle, 1, 1, 0, NULL)); + xe_spin_wait_started(cork->spin); + igt_assert(!syncobj_wait(fd, &cork->sync[1].handle, 1, 1, 0, NULL)); - if (ctx->cork_opts.debug) - igt_info("%d: spinner started\n", ctx->class); + if (cork->cork_opts.debug) + igt_info("%d: spinner started\n", cork->class); } /* * xe_cork_sync_end * * @fd: xe device fd - * @ctx: pointer to xe_cork structure + * @cork: pointer to xe_cork structure * * Wrapper to end spinner created by xe_cork_create. It will * unbind the vm which was binded to the exec_queue and bo. */ -void xe_cork_sync_end(int fd, struct xe_cork *ctx) +void xe_cork_sync_end(int fd, struct xe_cork *cork) { - igt_assert(ctx); + igt_assert(cork); - if (ctx->ended) - igt_warn("Don't attempt call end twice %d\n", ctx->ended); + if (cork->ended) + igt_warn("Don't attempt call end twice %d\n", cork->ended); - xe_spin_end(ctx->spin); + xe_spin_end(cork->spin); - igt_assert(syncobj_wait(fd, &ctx->sync[1].handle, 1, INT64_MAX, 0, NULL)); + igt_assert(syncobj_wait(fd, &cork->sync[1].handle, 1, INT64_MAX, 0, NULL)); - ctx->sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; - syncobj_reset(fd, &ctx->sync[0].handle, 1); + cork->sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + syncobj_reset(fd, &cork->sync[0].handle, 1); - xe_vm_unbind_async(fd, ctx->vm, 0, 0, ctx->addr[0], ctx->bo_size, ctx->sync, 1); - igt_assert(syncobj_wait(fd, &ctx->sync[0].handle, 1, INT64_MAX, 0, NULL)); + xe_vm_unbind_async(fd, cork->vm, 0, 0, cork->addr[0], cork->bo_size, cork->sync, 1); + igt_assert(syncobj_wait(fd, &cork->sync[0].handle, 1, INT64_MAX, 0, NULL)); - ctx->ended = true; + cork->ended = true; - if (ctx->cork_opts.debug) - igt_info("%d: spinner ended (timestamp=%u)\n", ctx->class, - ctx->spin->timestamp); + if (cork->cork_opts.debug) + igt_info("%d: spinner ended (timestamp=%u)\n", cork->class, + cork->spin->timestamp); } /* * xe_cork_destroy * * @fd: xe device fd - * @ctx: pointer to xe_cork structure + * @cork: pointer to xe_cork structure * - * It will destroy vm, exec_queue and free the ctx. + * It will destroy vm, exec_queue and free the cork. */ -void xe_cork_destroy(int fd, struct xe_cork *ctx) +void xe_cork_destroy(int fd, struct xe_cork *cork) { - igt_assert(ctx); + igt_assert(cork); - syncobj_destroy(fd, ctx->sync[0].handle); - syncobj_destroy(fd, ctx->sync[1].handle); - xe_exec_queue_destroy(fd, ctx->exec_queue); + syncobj_destroy(fd, cork->sync[0].handle); + syncobj_destroy(fd, cork->sync[1].handle); + xe_exec_queue_destroy(fd, cork->exec_queue); - if (ctx->cork_opts.ahnd) - intel_allocator_free(ctx->cork_opts.ahnd, ctx->bo); + if (cork->cork_opts.ahnd) + intel_allocator_free(cork->cork_opts.ahnd, cork->bo); - munmap(ctx->spin, ctx->bo_size); - gem_close(fd, ctx->bo); + munmap(cork->spin, cork->bo_size); + gem_close(fd, cork->bo); - free(ctx); + free(cork); } diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index f4264aadb..1089e5119 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -410,7 +410,7 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in { struct pceu_cycles pceu1[2][DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu2[2][DRM_XE_ENGINE_CLASS_COMPUTE + 1]; - struct xe_cork *ctx = NULL; + struct xe_cork *cork = NULL; enum expected_load expected_load; uint32_t vm; int new_fd; @@ -420,8 +420,8 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in vm = xe_vm_create(fd, 0, 0); if (flags & TEST_BUSY) { - ctx = xe_cork_create_opts(fd, hwe, vm, 1, 1); - xe_cork_sync_start(fd, ctx); + cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); + xe_cork_sync_start(fd, cork); } read_engine_cycles(fd, pceu1[0]); @@ -430,7 +430,7 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in usleep(batch_duration_usec); if (flags & TEST_TRAILING_IDLE) - xe_cork_sync_end(fd, ctx); + xe_cork_sync_end(fd, cork); read_engine_cycles(fd, pceu2[0]); if (flags & TEST_ISOLATION) @@ -449,8 +449,8 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in close(new_fd); } - if (flags & TEST_BUSY) - xe_cork_destroy(fd, ctx); + if (cork) + xe_cork_destroy(fd, cork); xe_vm_destroy(fd, vm); } @@ -460,19 +460,19 @@ utilization_single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hw { struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; - struct xe_cork *ctx = NULL; + struct xe_cork *cork; uint32_t vm; vm = xe_vm_create(fd, 0, 0); - ctx = xe_cork_create_opts(fd, hwe, vm, 1, 1); - xe_cork_sync_start(fd, ctx); + cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); + xe_cork_sync_start(fd, cork); read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); /* destroy queue before sampling again */ - xe_cork_sync_end(fd, ctx); - xe_cork_destroy(fd, ctx); + xe_cork_sync_end(fd, cork); + xe_cork_destroy(fd, cork); read_engine_cycles(fd, pceu2); @@ -486,17 +486,17 @@ utilization_others_idle(int fd, struct drm_xe_engine_class_instance *hwe) { struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; - struct xe_cork *ctx = NULL; + struct xe_cork *cork; uint32_t vm; int class; vm = xe_vm_create(fd, 0, 0); - ctx = xe_cork_create_opts(fd, hwe, vm, 1, 1); - xe_cork_sync_start(fd, ctx); + cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); + xe_cork_sync_start(fd, cork); read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); - xe_cork_sync_end(fd, ctx); + xe_cork_sync_end(fd, cork); read_engine_cycles(fd, pceu2); xe_for_each_engine_class(class) { @@ -506,7 +506,7 @@ utilization_others_idle(int fd, struct drm_xe_engine_class_instance *hwe) check_results(pceu1, pceu2, class, 1, expected_load); } - xe_cork_destroy(fd, ctx); + xe_cork_destroy(fd, cork); xe_vm_destroy(fd, vm); } @@ -515,7 +515,7 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) { struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; - struct xe_cork *ctx[DRM_XE_ENGINE_CLASS_COMPUTE + 1] = {}; + struct xe_cork *cork[DRM_XE_ENGINE_CLASS_COMPUTE + 1] = {}; struct drm_xe_engine_class_instance *_hwe; uint32_t vm; int class; @@ -526,17 +526,17 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) xe_for_each_engine(fd, _hwe) { int _class = _hwe->engine_class; - if (_class == hwe->engine_class || ctx[_class]) + if (_class == hwe->engine_class || cork[_class]) continue; - ctx[_class] = xe_cork_create_opts(fd, _hwe, vm, 1, 1); - xe_cork_sync_start(fd, ctx[_class]); + cork[_class] = xe_cork_create_opts(fd, _hwe, vm, 1, 1); + xe_cork_sync_start(fd, cork[_class]); } read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); xe_for_each_engine_class(class) - if (ctx[class]) - xe_cork_sync_end(fd, ctx[class]); + if (cork[class]) + xe_cork_sync_end(fd, cork[class]); read_engine_cycles(fd, pceu2); @@ -544,11 +544,11 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) enum expected_load expected_load = hwe->engine_class == class ? EXPECTED_LOAD_IDLE : EXPECTED_LOAD_FULL; - if (!ctx[class]) + if (!cork[class]) continue; check_results(pceu1, pceu2, class, 1, expected_load); - xe_cork_destroy(fd, ctx[class]); + xe_cork_destroy(fd, cork[class]); } xe_vm_destroy(fd, vm); @@ -559,7 +559,7 @@ utilization_all_full_load(int fd) { struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; - struct xe_cork *ctx[DRM_XE_ENGINE_CLASS_COMPUTE + 1] = {}; + struct xe_cork *cork[DRM_XE_ENGINE_CLASS_COMPUTE + 1] = {}; struct drm_xe_engine_class_instance *hwe; uint32_t vm; int class; @@ -569,24 +569,24 @@ utilization_all_full_load(int fd) /* spin on one hwe per class */ xe_for_each_engine(fd, hwe) { class = hwe->engine_class; - if (ctx[class]) + if (cork[class]) continue; - ctx[class] = xe_cork_create_opts(fd, hwe, vm, 1, 1); - xe_cork_sync_start(fd, ctx[class]); + cork[class] = xe_cork_create_opts(fd, hwe, vm, 1, 1); + xe_cork_sync_start(fd, cork[class]); } read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); xe_for_each_engine_class(class) - xe_cork_sync_end(fd, ctx[class]); + xe_cork_sync_end(fd, cork[class]); read_engine_cycles(fd, pceu2); xe_for_each_engine_class(class) { - if (!ctx[class]) + if (!cork[class]) continue; check_results(pceu1, pceu2, class, 1, EXPECTED_LOAD_FULL); - xe_cork_destroy(fd, ctx[class]); + xe_cork_destroy(fd, cork[class]); } xe_vm_destroy(fd, vm); @@ -613,7 +613,7 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) struct pceu_cycles pceu[2][DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu_spill[2][DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct drm_xe_engine_class_instance eci[XE_MAX_ENGINE_INSTANCE]; - struct xe_cork *ctx = NULL; + struct xe_cork *cork = NULL; enum expected_load expected_load; int fd_spill, num_placements; uint32_t vm; @@ -639,8 +639,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) vm = xe_vm_create(fd, 0, 0); if (flags & TEST_BUSY) { - ctx = xe_cork_create_opts(fd, eci, vm, width, num_placements); - xe_cork_sync_start(fd, ctx); + cork = xe_cork_create_opts(fd, eci, vm, width, num_placements); + xe_cork_sync_start(fd, cork); } read_engine_cycles(fd, pceu[0]); @@ -649,7 +649,7 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) usleep(batch_duration_usec); if (flags & TEST_TRAILING_IDLE) - xe_cork_sync_end(fd, ctx); + xe_cork_sync_end(fd, cork); read_engine_cycles(fd, pceu[1]); if (flags & TEST_ISOLATION) @@ -669,8 +669,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) close(fd_spill); } - if (flags & TEST_BUSY) - xe_cork_destroy(fd, ctx); + if (cork) + xe_cork_destroy(fd, cork); xe_vm_destroy(fd, vm); } diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c index 5d9afaf3d..e4000f50e 100644 --- a/tests/intel/xe_spin_batch.c +++ b/tests/intel/xe_spin_batch.c @@ -384,25 +384,25 @@ static void exec_store(int fd, struct drm_xe_engine_class_instance *eci, static void run_spinner(int fd, struct drm_xe_engine_class_instance *eci) { - struct xe_cork *ctx = NULL; + struct xe_cork *cork; uint32_t vm; uint32_t ts_1, ts_2; uint64_t ahnd; vm = xe_vm_create(fd, 0, 0); ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC); - ctx = xe_cork_create_opts(fd, eci, vm, 1, 1, .ahnd = ahnd); - xe_cork_sync_start(fd, ctx); + cork = xe_cork_create_opts(fd, eci, vm, 1, 1, .ahnd = ahnd); + xe_cork_sync_start(fd, cork); /* Collect and check timestamps before stopping the spinner */ usleep(50000); - ts_1 = READ_ONCE(ctx->spin->timestamp); + ts_1 = READ_ONCE(cork->spin->timestamp); usleep(50000); - ts_2 = READ_ONCE(ctx->spin->timestamp); + ts_2 = READ_ONCE(cork->spin->timestamp); igt_assert_neq_u32(ts_1, ts_2); - xe_cork_sync_end(fd, ctx); - xe_cork_destroy(fd, ctx); + xe_cork_sync_end(fd, cork); + xe_cork_destroy(fd, cork); xe_vm_destroy(fd, vm); put_ahnd(ahnd); diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index b10269191..9e524578a 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -945,21 +945,21 @@ test_bind_array(int fd, struct drm_xe_engine_class_instance *eci, int n_execs, sync[0].handle = syncobj_create(fd, 0); if (flags & BIND_ARRAY_ENOBUFS_FLAG) { - struct xe_cork *ctx = NULL; + struct xe_cork *cork; uint32_t vm_cork; vm_cork = xe_vm_create(fd, 0, 0); - ctx = xe_cork_create_opts(fd, eci, vm_cork, 1, 1); - xe_cork_sync_start(fd, ctx); + cork = xe_cork_create_opts(fd, eci, vm_cork, 1, 1); + xe_cork_sync_start(fd, cork); - sync[1].handle = ctx->sync[1].handle; + sync[1].handle = cork->sync[1].handle; sync[1].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; xe_vm_bind_array_err(fd, vm, bind_exec_queue, bind_ops, n_execs, sync, 2, ENOBUFS); /* destroy queue before sampling again */ - xe_cork_sync_end(fd, ctx); - xe_cork_destroy(fd, ctx); + xe_cork_sync_end(fd, cork); + xe_cork_destroy(fd, cork); xe_vm_destroy(fd, vm_cork); n_execs = n_execs / 4; -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:41 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:41 -0800 Subject: [PATCH i-g-t 1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started Message-ID: <20250104071548.737612-1-lucas.demarchi@intel.com> If cork was not started, do not try to end it. Similar fix to commit 598c268686f4 ("tests/intel/xe_drm_fdinfo: Do not destroy NULL xe_cork"). Cc: Jonathan Cavitt Cc: Pravalika Gurram Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3869 Fixes: 2feb1d6718a1 ("lib/xe/xe_spin: move the spinner related functions to lib") Signed-off-by: Lucas De Marchi --- tests/intel/xe_drm_fdinfo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index e83c55c64..6549629b4 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -533,7 +533,9 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) read_engine_cycles(fd, pceu1); usleep(batch_duration_usec); xe_for_each_engine_class(class) - xe_cork_sync_end(fd, ctx[class]); + if (ctx[class]) + xe_cork_sync_end(fd, ctx[class]); + read_engine_cycles(fd, pceu2); xe_for_each_engine_class(class) { -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:43 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:43 -0800 Subject: [PATCH i-g-t 3/8] lib/xe: Move functions from xe_util to xe_gt In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-3-lucas.demarchi@intel.com> Some functions are clearly gt-related, so move them to xe_gt. Signed-off-by: Lucas De Marchi --- lib/xe/xe_gt.c | 67 ++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 8 ++++ lib/xe/xe_util.c | 67 ---------------------------------- lib/xe/xe_util.h | 7 ---- tests/intel/xe_drm_fdinfo.c | 2 + tests/intel/xe_exec_balancer.c | 1 + tests/intel/xe_exec_reset.c | 1 + tests/intel/xe_exec_threads.c | 1 + tests/intel/xe_gt_freq.c | 1 + tests/intel/xe_pm_residency.c | 2 + 10 files changed, 83 insertions(+), 74 deletions(-) diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index 53554beb0..e1f353b41 100644 --- a/lib/xe/xe_gt.c +++ b/lib/xe/xe_gt.c @@ -174,3 +174,70 @@ int xe_gt_stats_get_count(int fd, int gt, const char *stat) return count; } + +/** + * xe_is_gt_in_c6: + * @fd: pointer to xe drm fd + * @gt: gt number + * + * Check if GT is in C6 state + */ +bool xe_is_gt_in_c6(int fd, int gt) +{ + char gt_c_state[16]; + int gt_fd; + + gt_fd = xe_sysfs_gt_open(fd, gt); + igt_assert(gt_fd >= 0); + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_status", "%s", gt_c_state) == 1); + close(gt_fd); + + return strcmp(gt_c_state, "gt-c6") == 0; +} + +/** + * xe_gt_fill_engines_by_class: + * @fd: pointer to xe drm fd + * @gt: gt number + * @class: engine class to use to filter engines + * @eci: output argument to copy engines to + * + * Fill out @drm_xe_engine_class_instance with all the engines in @gt that have + * a certain @class. + * + * Return: number of engines that match the gt and clas + */ +int xe_gt_fill_engines_by_class(int fd, int gt, int class, + struct drm_xe_engine_class_instance eci[static XE_MAX_ENGINE_INSTANCE]) +{ + struct drm_xe_engine_class_instance *hwe; + int n = 0; + + xe_for_each_engine(fd, hwe) + if (hwe->engine_class == class && hwe->gt_id == gt) + eci[n++] = *hwe; + + return n; +} + +/** + * xe_gt_count_engines_by_class: + * @fd: pointer to xe drm fd + * @gt: gt number + * @class: engine class to use to filter engines + * + * Count number of engines in @gt that have a certain @class. + * + * Return: number of engines that match the gt and clas + */ +int xe_gt_count_engines_by_class(int fd, int gt, int class) +{ + struct drm_xe_engine_class_instance *hwe; + int n = 0; + + xe_for_each_engine(fd, hwe) + if (hwe->engine_class == class && hwe->gt_id == gt) + n++; + + return n; +} diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h index 756b5f38e..47569cec3 100644 --- a/lib/xe/xe_gt.h +++ b/lib/xe/xe_gt.h @@ -8,6 +8,8 @@ #include "lib/igt_gt.h" +#include "xe_query.h" + bool has_xe_gt_reset(int fd); void xe_force_gt_reset_all(int fd); igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, @@ -15,4 +17,10 @@ igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, void xe_post_hang_ring(int fd, igt_hang_t arg); int xe_gt_stats_get_count(int fd, int gt, const char *stat); +bool xe_is_gt_in_c6(int fd, int gt); + +int xe_gt_fill_engines_by_class(int fd, int gt, int class, + struct drm_xe_engine_class_instance eci[static XE_MAX_ENGINE_INSTANCE]); +int xe_gt_count_engines_by_class(int fd, int gt, int class); + #endif diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c index 9482819c2..f0b6bbb2d 100644 --- a/lib/xe/xe_util.c +++ b/lib/xe/xe_util.c @@ -235,70 +235,3 @@ void xe_bind_unbind_async(int xe, uint32_t vm, uint32_t bind_engine, free(bind_ops); } - -/** - * xe_is_gt_in_c6: - * @fd: pointer to xe drm fd - * @gt: gt number - * - * Check if GT is in C6 state - */ -bool xe_is_gt_in_c6(int fd, int gt) -{ - char gt_c_state[16]; - int gt_fd; - - gt_fd = xe_sysfs_gt_open(fd, gt); - igt_assert(gt_fd >= 0); - igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_status", "%s", gt_c_state) == 1); - close(gt_fd); - - return strcmp(gt_c_state, "gt-c6") == 0; -} - -/** - * xe_gt_fill_engines_by_class: - * @fd: pointer to xe drm fd - * @gt: gt number - * @class: engine class to use to filter engines - * @eci: output argument to copy engines to - * - * Fill out @drm_xe_engine_class_instance with all the engines in @gt that have - * a certain @class. - * - * Return: number of engines that match the gt and clas - */ -int xe_gt_fill_engines_by_class(int fd, int gt, int class, - struct drm_xe_engine_class_instance eci[static XE_MAX_ENGINE_INSTANCE]) -{ - struct drm_xe_engine_class_instance *hwe; - int n = 0; - - xe_for_each_engine(fd, hwe) - if (hwe->engine_class == class && hwe->gt_id == gt) - eci[n++] = *hwe; - - return n; -} - -/** - * xe_gt_count_engines_by_class: - * @fd: pointer to xe drm fd - * @gt: gt number - * @class: engine class to use to filter engines - * - * Count number of engines in @gt that have a certain @class. - * - * Return: number of engines that match the gt and clas - */ -int xe_gt_count_engines_by_class(int fd, int gt, int class) -{ - struct drm_xe_engine_class_instance *hwe; - int n = 0; - - xe_for_each_engine(fd, hwe) - if (hwe->engine_class == class && hwe->gt_id == gt) - n++; - - return n; -} diff --git a/lib/xe/xe_util.h b/lib/xe/xe_util.h index b9fbfc5cd..c544d912f 100644 --- a/lib/xe/xe_util.h +++ b/lib/xe/xe_util.h @@ -47,11 +47,4 @@ void xe_bind_unbind_async(int fd, uint32_t vm, uint32_t bind_engine, struct igt_list_head *obj_list, uint32_t sync_in, uint32_t sync_out); -bool xe_is_gt_in_c6(int fd, int gt); - -int xe_gt_fill_engines_by_class(int fd, int gt, int class, - struct drm_xe_engine_class_instance eci[static XE_MAX_ENGINE_INSTANCE]); -int xe_gt_count_engines_by_class(int fd, int gt, int class); - - #endif /* XE_UTIL_H */ diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index 6549629b4..f4264aadb 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -8,7 +8,9 @@ #include "igt_device.h" #include "igt_drm_fdinfo.h" #include "lib/igt_syncobj.h" + #include "xe_drm.h" +#include "xe/xe_gt.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xe/xe_spin.h" diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c index 1e552e9ef..f2df5cbec 100644 --- a/tests/intel/xe_exec_balancer.c +++ b/tests/intel/xe_exec_balancer.c @@ -19,6 +19,7 @@ #include "lib/intel_reg.h" #include "xe_drm.h" +#include "xe/xe_gt.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xe/xe_spin.h" diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index a3eaf8bbf..47c7666df 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -21,6 +21,7 @@ #include "xe/xe_ioctl.h" #include "xe/xe_query.h" +#include "xe/xe_gt.h" #include "xe/xe_spin.h" #include "xe/xe_util.h" #include diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 661117bed..c8fc17366 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -21,6 +21,7 @@ #include "xe/xe_ioctl.h" #include "xe/xe_query.h" +#include "xe/xe_gt.h" #include "xe/xe_spin.h" #include "xe/xe_util.h" #include diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index de4d111ea..5d806cf15 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -17,6 +17,7 @@ #include "igt_sysfs.h" #include "xe_drm.h" +#include "xe/xe_gt.h" #include "xe/xe_ioctl.h" #include "xe/xe_spin.h" #include "xe/xe_query.h" diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index d4b26b231..18e5cb6c3 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -21,7 +21,9 @@ #include "igt_sysfs.h" #include "lib/igt_syncobj.h" + #include "xe/xe_ioctl.h" +#include "xe/xe_gt.h" #include "xe/xe_query.h" #include "xe/xe_util.h" -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:44 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:44 -0800 Subject: [PATCH i-g-t 4/8] lib/xe: Rename xe_is_gt_in_c6() In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-4-lucas.demarchi@intel.com> Use xe_gt_ as namespace. Signed-off-by: Lucas De Marchi --- lib/xe/xe_gt.c | 4 ++-- lib/xe/xe_gt.h | 2 +- tests/intel/xe_gt_freq.c | 12 ++++++------ tests/intel/xe_pm_residency.c | 8 ++++---- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index e1f353b41..6f1475be0 100644 --- a/lib/xe/xe_gt.c +++ b/lib/xe/xe_gt.c @@ -176,13 +176,13 @@ int xe_gt_stats_get_count(int fd, int gt, const char *stat) } /** - * xe_is_gt_in_c6: + * xe_gt_is_in_c6: * @fd: pointer to xe drm fd * @gt: gt number * * Check if GT is in C6 state */ -bool xe_is_gt_in_c6(int fd, int gt) +bool xe_gt_is_in_c6(int fd, int gt) { char gt_c_state[16]; int gt_fd; diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h index 47569cec3..511b31149 100644 --- a/lib/xe/xe_gt.h +++ b/lib/xe/xe_gt.h @@ -17,7 +17,7 @@ igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, void xe_post_hang_ring(int fd, igt_hang_t arg); int xe_gt_stats_get_count(int fd, int gt, const char *stat); -bool xe_is_gt_in_c6(int fd, int gt); +bool xe_gt_is_in_c6(int fd, int gt); int xe_gt_fill_engines_by_class(int fd, int gt, int class, struct drm_xe_engine_class_instance eci[static XE_MAX_ENGINE_INSTANCE]); diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index 5d806cf15..2ece2e6f4 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -200,7 +200,7 @@ static void test_freq_fixed(int fd, int gt_id, bool gt_idle) if (gt_idle) { /* Wait for GT to go in C6 as previous get_freq wakes up GT*/ - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt_id), 1000, 10), + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt_id), 1000, 10), "GT %d should be in C6\n", gt_id); igt_assert(get_freq(fd, gt_id, "act") == 0); } else { @@ -215,7 +215,7 @@ static void test_freq_fixed(int fd, int gt_id, bool gt_idle) igt_assert_lte_u32((rpmid - FREQ_UNIT_MHZ), cur_freq); if (gt_idle) { - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt_id), 1000, 10), + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt_id), 1000, 10), "GT %d should be in C6\n", gt_id); igt_assert(get_freq(fd, gt_id, "act") == 0); } else { @@ -234,7 +234,7 @@ static void test_freq_fixed(int fd, int gt_id, bool gt_idle) igt_assert_eq_u32(get_freq(fd, gt_id, "cur"), rp0); if (gt_idle) { - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt_id), 1000, 10), + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt_id), 1000, 10), "GT %d should be in C6\n", gt_id); igt_assert(get_freq(fd, gt_id, "act") == 0); } @@ -265,7 +265,7 @@ static void test_freq_range(int fd, int gt_id, bool gt_idle) igt_assert(rpn <= cur && cur <= rpmid + FREQ_UNIT_MHZ); if (gt_idle) { - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt_id), 1000, 10), + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt_id), 1000, 10), "GT %d should be in C6\n", gt_id); igt_assert(get_freq(fd, gt_id, "act") == 0); } else { @@ -466,7 +466,7 @@ igt_main igt_subtest("freq_fixed_idle") { xe_for_each_gt(fd, gt) { - igt_require_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 10), + igt_require_f(igt_wait(xe_gt_is_in_c6(fd, gt), 1000, 10), "GT %d should be in C6\n", gt); test_freq_fixed(fd, gt, true); } @@ -484,7 +484,7 @@ igt_main igt_subtest("freq_range_idle") { xe_for_each_gt(fd, gt) { - igt_require_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 10), + igt_require_f(igt_wait(xe_gt_is_in_c6(fd, gt), 1000, 10), "GT %d should be in C6\n", gt); test_freq_range(fd, gt, true); } diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index 18e5cb6c3..0b48a1c79 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -210,7 +210,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag) { unsigned long elapsed_ms, residency_start, residency_end; - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT %d not in C6\n", gt); + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt), 1000, 1), "GT %d not in C6\n", gt); if (flag == TEST_S2IDLE) { /* @@ -300,7 +300,7 @@ static void toggle_gt_c6(int fd, int n) igt_assert_lte(0, fw_handle); /* check if all gts are in C0 after forcewake is acquired */ xe_for_each_gt(fd, gt) - igt_assert_f(!xe_is_gt_in_c6(fd, gt), + igt_assert_f(!xe_gt_is_in_c6(fd, gt), "Forcewake acquired, GT %d should be in C0\n", gt); if (n == NUM_REPS) @@ -309,7 +309,7 @@ static void toggle_gt_c6(int fd, int n) close(fw_handle); /* check if all gts are in C6 after forcewake is released */ xe_for_each_gt(fd, gt) - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt), 1000, 1), "Forcewake released, GT %d should be in C6\n", gt); if (n == NUM_REPS) @@ -406,7 +406,7 @@ igt_main igt_subtest_with_dynamic("gt-c6-on-idle") { xe_for_each_gt(fd, gt) igt_dynamic_f("gt%u", gt) - igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), + igt_assert_f(igt_wait(xe_gt_is_in_c6(fd, gt), 1000, 1), "GT %d not in C6\n", gt); } -- 2.47.0 From lucas.demarchi at intel.com Sat Jan 4 07:15:48 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 3 Jan 2025 23:15:48 -0800 Subject: [PATCH i-g-t 8/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <20250104071548.737612-8-lucas.demarchi@intel.com> It's unreliable to assert on the usage percentage considering 2 data points as it still depends on the CPU scheduling not preempting tasks in the wrong moment. On a normal use case of a top-like application, the value not accounted for would simply show up in the next sample without much issue. For a test assertion, it's better to check that the value reported via fdinfo is reasonably close to the one saved by the GPU in the spin. It's still allowed some error because there are a few GPU ticks of difference due to the **GPU** scheduling the contexts. Cc: Umesh Nerlige Ramappa Signed-off-by: Lucas De Marchi --- tests/intel/xe_drm_fdinfo.c | 49 +++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index 1089e5119..120436fbe 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -3,6 +3,8 @@ * Copyright ? 2023 Intel Corporation */ +#include + #include "igt.h" #include "igt_core.h" #include "igt_device.h" @@ -371,7 +373,8 @@ static void basic_engine_utilization(int xe) static void check_results(struct pceu_cycles *s1, struct pceu_cycles *s2, - int class, int width, enum expected_load expected_load) + int class, int width, uint32_t spin_stamp, + enum expected_load expected_load) { double percent; u64 den, num; @@ -383,12 +386,9 @@ check_results(struct pceu_cycles *s1, struct pceu_cycles *s2, num = s2[class].cycles - s1[class].cycles; den = s2[class].total_cycles - s1[class].total_cycles; - percent = (num * 100.0) / (den + 1); - - /* for parallel submission scale the busyness with width */ - percent /= width; - igt_debug("%s: percent: %f\n", engine_map[class], percent); + percent = (num * 100.0) / (den + 1) / width; + igt_debug("%s: percent: %.2f%%\n", engine_map[class], percent); switch (expected_load) { case EXPECTED_LOAD_IDLE: @@ -396,11 +396,12 @@ check_results(struct pceu_cycles *s1, struct pceu_cycles *s2, break; case EXPECTED_LOAD_FULL: /* - * We are still relying on CPU sleep time and there could be - * some imprecision when calculating the load. Use a 5% margin. + * percentage error between value saved by gpu in xe_spin and what + * is reported via fdinfo */ - igt_assert_lt_double(95.0, percent); - igt_assert_lt_double(percent, 105.0); + percent = fabs((num - spin_stamp) * 100.0) / (spin_stamp + 1); + igt_debug("%s: error: %.2f%%\n", engine_map[class], percent); + igt_assert_lt_double(percent, 5.0); break; } } @@ -438,14 +439,17 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in expected_load = flags & TEST_BUSY ? EXPECTED_LOAD_FULL : EXPECTED_LOAD_IDLE; - check_results(pceu1[0], pceu2[0], hwe->engine_class, 1, expected_load); + + check_results(pceu1[0], pceu2[0], hwe->engine_class, 1, + cork ? cork->spin->timestamp : 0, expected_load); if (flags & TEST_ISOLATION) { /* * Load from one client shouldn't spill on another, * so check for idle */ - check_results(pceu1[1], pceu2[1], hwe->engine_class, 1, EXPECTED_LOAD_IDLE); + check_results(pceu1[1], pceu2[1], hwe->engine_class, 1, 0, + EXPECTED_LOAD_IDLE); close(new_fd); } @@ -461,6 +465,7 @@ utilization_single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hw struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1]; struct xe_cork *cork; + uint32_t timestamp; uint32_t vm; vm = xe_vm_create(fd, 0, 0); @@ -472,13 +477,15 @@ utilization_single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hw /* destroy queue before sampling again */ xe_cork_sync_end(fd, cork); + timestamp = cork->spin->timestamp; xe_cork_destroy(fd, cork); read_engine_cycles(fd, pceu2); xe_vm_destroy(fd, vm); - check_results(pceu1, pceu2, hwe->engine_class, 1, EXPECTED_LOAD_FULL); + check_results(pceu1, pceu2, hwe->engine_class, 1, timestamp, + EXPECTED_LOAD_FULL); } static void @@ -503,7 +510,8 @@ utilization_others_idle(int fd, struct drm_xe_engine_class_instance *hwe) enum expected_load expected_load = hwe->engine_class != class ? EXPECTED_LOAD_IDLE : EXPECTED_LOAD_FULL; - check_results(pceu1, pceu2, class, 1, expected_load); + check_results(pceu1, pceu2, class, 1, cork->spin->timestamp, + expected_load); } xe_cork_destroy(fd, cork); @@ -547,7 +555,8 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) if (!cork[class]) continue; - check_results(pceu1, pceu2, class, 1, expected_load); + check_results(pceu1, pceu2, class, 1, cork[class]->spin->timestamp, + expected_load); xe_cork_destroy(fd, cork[class]); } @@ -585,7 +594,9 @@ utilization_all_full_load(int fd) if (!cork[class]) continue; - check_results(pceu1, pceu2, class, 1, EXPECTED_LOAD_FULL); + check_results(pceu1, pceu2, class, 1, + cork[class]->spin->timestamp, + EXPECTED_LOAD_FULL); xe_cork_destroy(fd, cork[class]); } @@ -657,14 +668,16 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) expected_load = flags & TEST_BUSY ? EXPECTED_LOAD_FULL : EXPECTED_LOAD_IDLE; - check_results(pceu[0], pceu[1], class, width, expected_load); + + check_results(pceu[0], pceu[1], class, width, + cork ? cork->spin->timestamp : 0, expected_load); if (flags & TEST_ISOLATION) { /* * Load from one client shouldn't spill on another, * so check for idle */ - check_results(pceu_spill[0], pceu_spill[1], class, width, + check_results(pceu_spill[0], pceu_spill[1], class, width, 0, EXPECTED_LOAD_IDLE); close(fd_spill); } -- 2.47.0 From ramanaidu.naladala at intel.com Sat Jan 4 11:31:26 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Sat, 4 Jan 2025 17:01:26 +0530 Subject: [PATCH i-g-t v2 0/2] Update skip messages in scaling modes Message-ID: <20250104113128.893119-1-ramanaidu.naladala@intel.com> These changes improve the clarity of test logs, making it easier to understand why certain tests are skipped. Naladala Ramanaidu (2): tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests HAX patch do not merge tests/intel-ci/fast-feedback.testlist | 171 +------------- tests/intel-ci/xe-fast-feedback.testlist | 276 +---------------------- tests/kms_scaling_modes.c | 5 +- 3 files changed, 12 insertions(+), 440 deletions(-) -- 2.43.0 From ramanaidu.naladala at intel.com Sat Jan 4 11:31:27 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Sat, 4 Jan 2025 17:01:27 +0530 Subject: [PATCH i-g-t v2 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests In-Reply-To: <20250104113128.893119-1-ramanaidu.naladala@intel.com> References: <20250104113128.893119-1-ramanaidu.naladala@intel.com> Message-ID: <20250104113128.893119-2-ramanaidu.naladala@intel.com> Add `igt_info` messages to provide more context when skipping outputs that do not support scaling mode. Include `igt_info` messages to indicate when invalid pipe/output combinations are skipped. V1: Fix alignment issues. (Pranay) V2: Update skip message and alignment issue. (Swati, Pranay) Signed-off-by: Naladala Ramanaidu Reviewed-by: Pranay Samala --- tests/kms_scaling_modes.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c index 5fd34c4b2..4e6a32414 100644 --- a/tests/kms_scaling_modes.c +++ b/tests/kms_scaling_modes.c @@ -117,8 +117,11 @@ static void test_scaling_mode(data_t *data, uint32_t flags) for_each_pipe_with_valid_output(display, pipe, output) { igt_display_reset(display); - if (!has_scaling_mode(output)) + if (!has_scaling_mode(output)) { + igt_info("%s: Doesn't support IGT_CONNECTOR_SCALING_MODE\n", + igt_output_name(output)); continue; + } igt_output_set_pipe(output, pipe); if (!intel_pipe_output_combo_valid(display)) -- 2.43.0 From ramanaidu.naladala at intel.com Sat Jan 4 11:31:28 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Sat, 4 Jan 2025 17:01:28 +0530 Subject: [PATCH i-g-t v2 2/2] HAX patch do not merge In-Reply-To: <20250104113128.893119-1-ramanaidu.naladala@intel.com> References: <20250104113128.893119-1-ramanaidu.naladala@intel.com> Message-ID: <20250104113128.893119-3-ramanaidu.naladala@intel.com> HAX patch do not merge Signed-off-by: Naladala Ramanaidu --- tests/intel-ci/fast-feedback.testlist | 171 +------------- tests/intel-ci/xe-fast-feedback.testlist | 276 +---------------------- 2 files changed, 8 insertions(+), 439 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..109e1c76f 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,170 +2,7 @@ igt at i915_module_load@load # Keep alphabetically sorted by default -igt at core_auth@basic-auth -igt at debugfs_test@read_all_entries -igt at debugfs_test@basic-hwmon -igt at debugfs_test@sysfs -igt at fbdev@eof -igt at fbdev@info -igt at fbdev@nullptr -igt at fbdev@read -igt at fbdev@write -igt at gem_basic@bad-close -igt at gem_basic@create-close -igt at gem_basic@create-fd-close -igt at gem_busy@busy at all-engines -igt at gem_close_race@basic-process -igt at gem_close_race@basic-threads -igt at gem_ctx_create@basic -igt at gem_ctx_create@basic-files -igt at gem_ctx_exec@basic -igt at gem_exec_basic@basic -igt at gem_exec_create@basic -igt at gem_exec_fence@basic-busy -igt at gem_exec_fence@basic-wait -igt at gem_exec_fence@basic-await -igt at gem_exec_fence@nb-await -igt at gem_exec_gttfill@basic -igt at gem_exec_parallel@engines -igt at gem_exec_store@basic -igt at gem_flink_basic@bad-flink -igt at gem_flink_basic@bad-open -igt at gem_flink_basic@basic -igt at gem_flink_basic@double-flink -igt at gem_flink_basic@flink-lifetime -igt at gem_huc_copy@huc-copy -igt at gem_linear_blits@basic -igt at gem_mmap@basic -igt at gem_mmap_gtt@basic -igt at gem_render_linear_blits@basic -igt at gem_render_tiled_blits@basic -igt at gem_ringfill@basic-all -igt at gem_softpin@allocator-basic -igt at gem_softpin@allocator-basic-reserve -igt at gem_softpin@safe-alignment -igt at gem_sync@basic-all -igt at gem_sync@basic-each -igt at gem_tiled_blits@basic -igt at gem_tiled_fence_blits@basic -igt at gem_tiled_pread_basic -igt at gem_wait@busy at all-engines -igt at gem_wait@wait at all-engines -igt at i915_getparams_basic@basic-eu-total -igt at i915_getparams_basic@basic-subslice-total -igt at i915_hangman@error-state-basic -igt at i915_pciid -igt at kms_addfb_basic@addfb25-4-tiled -igt at kms_addfb_basic@addfb25-bad-modifier -igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling -igt at kms_addfb_basic@addfb25-modifier-no-flag -igt at kms_addfb_basic@addfb25-x-tiled-legacy -igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy -igt at kms_addfb_basic@addfb25-yf-tiled-legacy -igt at kms_addfb_basic@addfb25-y-tiled-legacy -igt at kms_addfb_basic@addfb25-y-tiled-small-legacy -igt at kms_addfb_basic@bad-pitch-0 -igt at kms_addfb_basic@bad-pitch-1024 -igt at kms_addfb_basic@bad-pitch-128 -igt at kms_addfb_basic@bad-pitch-256 -igt at kms_addfb_basic@bad-pitch-32 -igt at kms_addfb_basic@bad-pitch-63 -igt at kms_addfb_basic@bad-pitch-65536 -igt at kms_addfb_basic@bad-pitch-999 -igt at kms_addfb_basic@basic -igt at kms_addfb_basic@basic-x-tiled-legacy -igt at kms_addfb_basic@basic-y-tiled-legacy -igt at kms_addfb_basic@bo-too-small -igt at kms_addfb_basic@bo-too-small-due-to-tiling -igt at kms_addfb_basic@clobberred-modifier -igt at kms_addfb_basic@framebuffer-vs-set-tiling -igt at kms_addfb_basic@invalid-get-prop -igt at kms_addfb_basic@invalid-get-prop-any -igt at kms_addfb_basic@invalid-set-prop -igt at kms_addfb_basic@invalid-set-prop-any -igt at kms_addfb_basic@no-handle -igt at kms_addfb_basic@size-max -igt at kms_addfb_basic@small-bo -igt at kms_addfb_basic@tile-pitch-mismatch -igt at kms_addfb_basic@too-high -igt at kms_addfb_basic@too-wide -igt at kms_addfb_basic@unused-handle -igt at kms_addfb_basic@unused-modifier -igt at kms_addfb_basic@unused-offsets -igt at kms_addfb_basic@unused-pitches -igt at kms_busy@basic -igt at kms_prop_blob@basic -igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic -igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy -igt at kms_cursor_legacy@basic-flip-after-cursor-atomic -igt at kms_cursor_legacy@basic-flip-after-cursor-legacy -igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt at kms_cursor_legacy@basic-flip-before-cursor-atomic -igt at kms_cursor_legacy@basic-flip-before-cursor-legacy -igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt at kms_dsc@dsc-basic -igt at kms_flip@basic-flip-vs-dpms -igt at kms_flip@basic-flip-vs-modeset -igt at kms_flip@basic-flip-vs-wf_vblank -igt at kms_flip@basic-plain-flip -igt at kms_force_connector_basic@force-connector-state -igt at kms_force_connector_basic@force-edid -igt at kms_force_connector_basic@force-load-detect -igt at kms_force_connector_basic@prune-stale-modes -igt at kms_frontbuffer_tracking@basic -igt at kms_hdmi_inject@inject-audio -igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt at kms_pipe_crc_basic@hang-read-crc -igt at kms_pipe_crc_basic@nonblocking-crc -igt at kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt at kms_pipe_crc_basic@read-crc -igt at kms_pipe_crc_basic@read-crc-frame-sequence -igt at kms_pm_backlight@basic-brightness -igt at kms_pm_rpm@basic-pci-d3-state -igt at kms_pm_rpm@basic-rte -igt at kms_psr@psr-primary-page-flip -igt at kms_psr@psr-cursor-plane-move -igt at kms_psr@psr-sprite-plane-onoff -igt at kms_psr@psr-primary-mmap-gtt -igt at kms_setmode@basic-clone-single-crtc -igt at i915_pm_rps@basic-api -igt at prime_self_import@basic-llseek-bad -igt at prime_self_import@basic-llseek-size -igt at prime_self_import@basic-with_fd_dup -igt at prime_self_import@basic-with_one_bo -igt at prime_self_import@basic-with_one_bo_two_files -igt at prime_self_import@basic-with_two_bos -igt at prime_vgem@basic-fence-flip -igt at prime_vgem@basic-fence-mmap -igt at prime_vgem@basic-fence-read -igt at prime_vgem@basic-gtt -igt at prime_vgem@basic-read -igt at prime_vgem@basic-write -igt at vgem_basic@setversion -igt at vgem_basic@create -igt at vgem_basic@debugfs -igt at vgem_basic@dmabuf-export -igt at vgem_basic@dmabuf-fence -igt at vgem_basic@dmabuf-fence-before -igt at vgem_basic@dmabuf-mmap -igt at vgem_basic@mmap -igt at vgem_basic@second-client -igt at vgem_basic@sysfs - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. - -igt at core_hotunplug@unbind-rebind -igt at vgem_basic@unload -igt at i915_module_load@reload -igt at gem_lmem_swapping@basic -igt at gem_lmem_swapping@parallel-random-engines -igt at gem_lmem_swapping@random-engines -igt at gem_lmem_swapping@verify-random -igt at i915_pm_rpm@module-reload - -# Kernel selftests -igt at i915_selftest@live -igt at dmabuf@all-tests +igt at kms_scaling_modes@scaling-mode-full +igt at kms_scaling_modes@scaling-mode-center +igt at kms_scaling_modes@scaling-mode-full-aspect +igt at kms_scaling_modes@scaling-mode-none diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..230f2a8a9 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,275 +1,7 @@ # Should be the first test igt at xe_module_load@load -igt at fbdev@eof -igt at fbdev@info -igt at fbdev@nullptr -igt at fbdev@read -igt at fbdev@write - -igt at kms_addfb_basic@addfb25-4-tiled -igt at kms_addfb_basic@addfb25-bad-modifier -igt at kms_addfb_basic@addfb25-modifier-no-flag -igt at kms_addfb_basic@addfb25-x-tiled-legacy -igt at kms_addfb_basic@addfb25-yf-tiled-legacy -igt at kms_addfb_basic@addfb25-y-tiled-legacy -igt at kms_addfb_basic@addfb25-y-tiled-small-legacy -igt at kms_addfb_basic@bad-pitch-0 -igt at kms_addfb_basic@bad-pitch-1024 -igt at kms_addfb_basic@bad-pitch-128 -igt at kms_addfb_basic@bad-pitch-256 -igt at kms_addfb_basic@bad-pitch-32 -igt at kms_addfb_basic@bad-pitch-63 -igt at kms_addfb_basic@bad-pitch-65536 -igt at kms_addfb_basic@bad-pitch-999 -igt at kms_addfb_basic@basic -igt at kms_addfb_basic@basic-x-tiled-legacy -igt at kms_addfb_basic@bo-too-small -igt at kms_addfb_basic@invalid-get-prop -igt at kms_addfb_basic@invalid-get-prop-any -igt at kms_addfb_basic@invalid-set-prop -igt at kms_addfb_basic@invalid-set-prop-any -igt at kms_addfb_basic@no-handle -igt at kms_addfb_basic@size-max -igt at kms_addfb_basic@small-bo -igt at kms_addfb_basic@too-high -igt at kms_addfb_basic@too-wide -igt at kms_addfb_basic@unused-handle -igt at kms_addfb_basic@unused-modifier -igt at kms_addfb_basic@unused-offsets -igt at kms_addfb_basic@unused-pitches -igt at kms_cursor_legacy@basic-flip-after-cursor-atomic -igt at kms_cursor_legacy@basic-flip-after-cursor-legacy -igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt at kms_cursor_legacy@basic-flip-before-cursor-atomic -igt at kms_cursor_legacy@basic-flip-before-cursor-legacy -igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt at kms_dsc@dsc-basic -igt at kms_flip@basic-flip-vs-dpms -igt at kms_flip@basic-flip-vs-modeset -igt at kms_flip@basic-flip-vs-wf_vblank -igt at kms_flip@basic-plain-flip -igt at kms_force_connector_basic@force-connector-state -igt at kms_force_connector_basic@force-edid -igt at kms_force_connector_basic@prune-stale-modes -igt at kms_frontbuffer_tracking@basic -igt at kms_hdmi_inject@inject-audio -igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt at kms_pipe_crc_basic@hang-read-crc -igt at kms_pipe_crc_basic@nonblocking-crc -igt at kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt at kms_pipe_crc_basic@read-crc -igt at kms_pipe_crc_basic@read-crc-frame-sequence -igt at kms_prop_blob@basic -igt at kms_psr@psr-primary-page-flip -igt at kms_psr@psr-cursor-plane-move -igt at kms_psr@psr-sprite-plane-onoff -igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all -igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1 -igt at xe_compute@compute-square -igt at xe_create@create-execqueues-noleak -igt at xe_create@create-execqueues-leak -igt at xe_create@create-invalid-mbz -igt at xe_create@create-massive-size -igt at xe_debugfs@base -igt at xe_debugfs@gt -igt at xe_debugfs@forcewake -igt at xe_dma_buf_sync@export-dma-buf-once-write-sync -igt at xe_dma_buf_sync@export-dma-buf-once-read-sync -igt at xe_dma_buf_sync@export-dma-buf-once-read-write-sync -igt at xe_dma_buf_sync@export-dma-buf-once-write-read-sync -igt at xe_evict_ccs@evict-overcommit-simple -igt at xe_evict_ccs@evict-overcommit-parallel-nofree-samefd -igt at xe_exec_atomic@basic-dec-all -igt at xe_exec_atomic@basic-inc-all -igt at xe_exec_balancer@twice-virtual-basic -igt at xe_exec_balancer@no-exec-virtual-basic -igt at xe_exec_balancer@twice-cm-virtual-basic -igt at xe_exec_balancer@no-exec-cm-virtual-basic -igt at xe_exec_balancer@twice-virtual-userptr -igt at xe_exec_balancer@twice-cm-virtual-userptr -igt at xe_exec_balancer@twice-virtual-rebind -igt at xe_exec_balancer@twice-cm-virtual-rebind -igt at xe_exec_balancer@twice-virtual-userptr-rebind -igt at xe_exec_balancer@twice-cm-virtual-userptr-rebind -igt at xe_exec_balancer@twice-virtual-userptr-invalidate -igt at xe_exec_balancer@twice-cm-virtual-userptr-invalidate -igt at xe_exec_balancer@twice-parallel-basic -igt at xe_exec_balancer@no-exec-parallel-basic -igt at xe_exec_balancer@twice-parallel-userptr -igt at xe_exec_balancer@twice-parallel-rebind -igt at xe_exec_balancer@twice-parallel-userptr-rebind -igt at xe_exec_balancer@twice-parallel-userptr-invalidate -igt at xe_exec_basic@twice-basic -igt at xe_exec_basic@no-exec-basic -igt at xe_exec_basic@twice-basic-defer-mmap -igt at xe_exec_basic@twice-basic-defer-bind -igt at xe_exec_basic@twice-userptr -igt at xe_exec_basic@twice-rebind -igt at xe_exec_basic@twice-userptr-rebind -igt at xe_exec_basic@twice-userptr-invalidate -igt at xe_exec_basic@no-exec-userptr-invalidate -igt at xe_exec_basic@twice-bindexecqueue -igt at xe_exec_basic@no-exec-bindexecqueue -igt at xe_exec_basic@twice-bindexecqueue-userptr -igt at xe_exec_basic@twice-bindexecqueue-rebind -igt at xe_exec_basic@twice-bindexecqueue-userptr-rebind -igt at xe_exec_basic@twice-bindexecqueue-userptr-invalidate -igt at xe_exec_compute_mode@twice-basic -igt at xe_exec_compute_mode@twice-preempt-fence-early -igt at xe_exec_compute_mode@twice-userptr -igt at xe_exec_compute_mode@twice-rebind -igt at xe_exec_compute_mode@twice-userptr-rebind -igt at xe_exec_compute_mode@twice-userptr-invalidate -igt at xe_exec_compute_mode@twice-bindexecqueue -igt at xe_exec_compute_mode@twice-bindexecqueue-userptr -igt at xe_exec_compute_mode@twice-bindexecqueue-rebind -igt at xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind -igt at xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate -igt at xe_exec_queue_property@invalid-property -igt at xe_exec_reset@close-fd-no-exec -igt at xe_exec_reset@cm-close-fd-no-exec -igt at xe_exec_reset@virtual-close-fd-no-exec -igt at xe_exec_store@basic-store -igt at xe_gpgpu_fill@basic -igt at xe_gt_freq@freq_basic_api -igt at xe_gt_freq@freq_fixed_idle -igt at xe_gt_freq@freq_range_idle -igt at xe_huc_copy@huc_copy -igt at xe_intel_bb@add-remove-objects -igt at xe_intel_bb@bb-with-allocator -igt at xe_intel_bb@blit-reloc -igt at xe_intel_bb@blit-simple -igt at xe_intel_bb@create-in-region -igt at xe_intel_bb@delta-check -igt at xe_intel_bb@destroy-bb -igt at xe_intel_bb@intel-bb-blit-none -igt at xe_intel_bb@intel-bb-blit-x -igt at xe_intel_bb@intel-bb-blit-y -igt at xe_intel_bb@lot-of-buffers -igt at xe_intel_bb@offset-control -igt at xe_intel_bb@purge-bb -igt at xe_intel_bb@render -igt at xe_intel_bb@reset-bb -igt at xe_intel_bb@simple-bb -igt at xe_intel_bb@simple-bb-ctx -igt at xe_mmap@bad-extensions -igt at xe_mmap@bad-flags -igt at xe_mmap@bad-object -igt at xe_mmap@cpu-caching -igt at xe_mmap@system -igt at xe_mmap@vram -igt at xe_mmap@vram-system -igt at xe_pm_residency@gt-c6-on-idle -igt at xe_prime_self_import@basic-with_one_bo -igt at xe_prime_self_import@basic-with_fd_dup -#igt at xe_prime_self_import@basic-llseek-size -igt at xe_query@query-engines -igt at xe_query@query-mem-usage -igt at xe_query@query-gt-list -igt at xe_query@query-config -igt at xe_query@query-hwconfig -igt at xe_query@query-topology -igt at xe_query@query-invalid-extension -igt at xe_query@query-invalid-query -igt at xe_query@query-invalid-size -igt at xe_spin_batch@spin-basic -igt at xe_spin_batch@spin-batch -igt at xe_sriov_flr@flr-vf1-clear -igt at xe_sysfs_defaults@engine-defaults -igt at xe_sysfs_scheduler@preempt_timeout_us-invalid -igt at xe_sysfs_scheduler@preempt_timeout_us-min-max -igt at xe_sysfs_scheduler@timeslice_duration_us-invalid -igt at xe_sysfs_scheduler@timeslice_duration_us-min-max -igt at xe_sysfs_scheduler@job_timeout_ms-invalid -igt at xe_sysfs_scheduler@job_timeout_ms-min-max -#igt at xe_vm@bind-once -#igt at xe_vm@scratch -igt at xe_vm@shared-pte-page -igt at xe_vm@shared-pde-page -igt at xe_vm@shared-pde2-page -igt at xe_vm@shared-pde3-page -igt at xe_vm@bind-execqueues-independent -igt at xe_vm@large-split-binds-268435456 -igt at xe_vm@munmap-style-unbind-one-partial -igt at xe_vm@munmap-style-unbind-end -igt at xe_vm@munmap-style-unbind-front -igt at xe_vm@munmap-style-unbind-userptr-one-partial -igt at xe_vm@munmap-style-unbind-userptr-end -igt at xe_vm@munmap-style-unbind-userptr-front -igt at xe_vm@munmap-style-unbind-userptr-inval-end -igt at xe_vm@munmap-style-unbind-userptr-inval-front -igt at xe_pat@userptr-coh-none -igt at xe_pat@prime-self-import-coh -igt at xe_pat@prime-external-import-coh -igt at xe_pat@pat-index-all -igt at xe_pat@pat-index-xelp -igt at xe_pat@pat-index-xehpc -igt at xe_pat@pat-index-xelpg -igt at xe_pat@pat-index-xe2 -igt at xe_waitfence@abstime -igt at xe_waitfence@engine -igt at xe_waitfence@reltime - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. -igt at core_hotunplug@unbind-rebind - -# Run KUnit tests at the end -igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit -igt at xe_live_ktest@xe_bo at xe_bo_evict_kunit -igt at xe_live_ktest@xe_dma_buf -igt at xe_live_ktest@xe_migrate - -# Move fault_mode tests at the end to unblock execution -igt at xe_exec_fault_mode@twice-basic -igt at xe_exec_fault_mode@many-basic -igt at xe_exec_fault_mode@twice-userptr -igt at xe_exec_fault_mode@twice-rebind -igt at xe_exec_fault_mode@twice-userptr-rebind -igt at xe_exec_fault_mode@twice-userptr-invalidate -igt at xe_exec_fault_mode@twice-bindexecqueue -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr -igt at xe_exec_fault_mode@twice-bindexecqueue-rebind -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate -igt at xe_exec_fault_mode@twice-basic-imm -igt at xe_exec_fault_mode@twice-userptr-imm -igt at xe_exec_fault_mode@twice-rebind-imm -igt at xe_exec_fault_mode@twice-userptr-rebind-imm -igt at xe_exec_fault_mode@twice-userptr-invalidate-imm -igt at xe_exec_fault_mode@twice-bindexecqueue-imm -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-imm -igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm -igt at xe_exec_fault_mode@twice-basic-prefetch -igt at xe_exec_fault_mode@twice-userptr-prefetch -igt at xe_exec_fault_mode@twice-rebind-prefetch -igt at xe_exec_fault_mode@twice-userptr-rebind-prefetch -igt at xe_exec_fault_mode@twice-userptr-invalidate-prefetch -igt at xe_exec_fault_mode@twice-bindexecqueue-prefetch -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch -igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch -igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch -igt at xe_exec_fault_mode@twice-invalid-fault -igt at xe_exec_fault_mode@twice-invalid-userptr-fault -igt at xe_exec_threads@threads-basic -igt at xe_exec_threads@threads-mixed-basic -igt at xe_exec_threads@threads-mixed-shared-vm-basic -igt at xe_exec_threads@threads-mixed-fd-basic -igt at xe_exec_threads@threads-mixed-userptr-invalidate -igt at xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race -igt at xe_evict@evict-beng-small -igt at xe_evict@evict-beng-small-cm -igt at xe_evict@evict-beng-small-external -igt at xe_evict@evict-beng-small-external-cm -igt at xe_evict@evict-beng-small-multi-vm -igt at xe_evict@evict-small -igt at xe_evict@evict-small-cm -igt at xe_evict@evict-small-external -igt at xe_evict@evict-small-external-cm -igt at xe_evict@evict-small-multi-vm +igt at kms_scaling_modes@scaling-mode-full +igt at kms_scaling_modes@scaling-mode-center +igt at kms_scaling_modes@scaling-mode-full-aspect +igt at kms_scaling_modes@scaling-mode-none -- 2.43.0 From patchwork at emeril.freedesktop.org Sat Jan 4 12:32:05 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 12:32:05 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Update_skip_messages_in_s?= =?utf-8?q?caling_modes_=28rev3=29?= In-Reply-To: <20250104113128.893119-1-ramanaidu.naladala@intel.com> References: <20250104113128.893119-1-ramanaidu.naladala@intel.com> Message-ID: <173599392527.3145308.771495718069321557@b555e5b46a47> == Series Details == Series: Update skip messages in scaling modes (rev3) URL : https://patchwork.freedesktop.org/series/141850/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12387 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12387 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_scaling_modes@scaling-mode-center: - fi-blb-e6850: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-blb-e6850/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full: - fi-ivb-3770: NOTRUN -> [SKIP][2] +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-ivb-3770/igt at kms_scaling_modes@scaling-mode-full.html - bat-dg1-6: NOTRUN -> [SKIP][3] ([i915#12311]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-dg1-6/igt at kms_scaling_modes@scaling-mode-full.html - fi-elk-e7500: NOTRUN -> [SKIP][4] +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-elk-e7500/igt at kms_scaling_modes@scaling-mode-full.html - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#3555]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-dg2-8/igt at kms_scaling_modes@scaling-mode-full.html - fi-kbl-guc: NOTRUN -> [SKIP][6] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-kbl-guc/igt at kms_scaling_modes@scaling-mode-full.html - bat-adls-6: NOTRUN -> [SKIP][7] ([i915#3555]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-adls-6/igt at kms_scaling_modes@scaling-mode-full.html - fi-ilk-650: NOTRUN -> [SKIP][8] +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-ilk-650/igt at kms_scaling_modes@scaling-mode-full.html - fi-tgl-1115g4: NOTRUN -> [SKIP][9] ([i915#3555]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-tgl-1115g4/igt at kms_scaling_modes@scaling-mode-full.html - fi-cfl-guc: NOTRUN -> [SKIP][10] +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-cfl-guc/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - bat-mtlp-6: NOTRUN -> [SKIP][11] ([i915#9792]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-mtlp-6/igt at kms_scaling_modes@scaling-mode-full-aspect.html - bat-adlp-11: NOTRUN -> [SKIP][12] ([i915#10470]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-adlp-11/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - bat-arlh-3: NOTRUN -> [SKIP][13] ([i915#11495]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-arlh-3/igt at kms_scaling_modes@scaling-mode-none.html - bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#3555]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-dg1-7/igt at kms_scaling_modes@scaling-mode-none.html - bat-adlp-9: NOTRUN -> [SKIP][15] ([i915#3555]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-adlp-9/igt at kms_scaling_modes@scaling-mode-none.html - bat-twl-2: NOTRUN -> [SKIP][16] ([i915#11495]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-twl-2/igt at kms_scaling_modes@scaling-mode-none.html - bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#3555]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-dg2-11/igt at kms_scaling_modes@scaling-mode-none.html - bat-rpls-4: NOTRUN -> [SKIP][18] ([i915#3555]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-rpls-4/igt at kms_scaling_modes@scaling-mode-none.html - fi-kbl-7567u: NOTRUN -> [SKIP][19] +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-kbl-7567u/igt at kms_scaling_modes@scaling-mode-none.html - fi-cfl-8700k: NOTRUN -> [SKIP][20] +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-cfl-8700k/igt at kms_scaling_modes@scaling-mode-none.html - fi-kbl-8809g: NOTRUN -> [SKIP][21] +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-kbl-8809g/igt at kms_scaling_modes@scaling-mode-none.html - bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#3555]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-dg2-14/igt at kms_scaling_modes@scaling-mode-none.html - fi-bsw-nick: NOTRUN -> [SKIP][23] +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-bsw-nick/igt at kms_scaling_modes@scaling-mode-none.html - bat-kbl-2: NOTRUN -> [SKIP][24] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-kbl-2/igt at kms_scaling_modes@scaling-mode-none.html - bat-arls-5: NOTRUN -> [SKIP][25] ([i915#9041]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-arls-5/igt at kms_scaling_modes@scaling-mode-none.html - bat-rplp-1: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#5030]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-rplp-1/igt at kms_scaling_modes@scaling-mode-none.html - bat-arlh-2: NOTRUN -> [SKIP][27] ([i915#11346]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-arlh-2/igt at kms_scaling_modes@scaling-mode-none.html - fi-rkl-11600: NOTRUN -> [SKIP][28] ([i915#3555]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-rkl-11600/igt at kms_scaling_modes@scaling-mode-none.html - bat-atsm-1: NOTRUN -> [SKIP][29] ([i915#6078]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-atsm-1/igt at kms_scaling_modes@scaling-mode-none.html - bat-jsl-3: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#5030]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-jsl-3/igt at kms_scaling_modes@scaling-mode-none.html - fi-kbl-x1275: NOTRUN -> [SKIP][31] +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-kbl-x1275/igt at kms_scaling_modes@scaling-mode-none.html - bat-adlp-11: NOTRUN -> [SKIP][32] ([i915#10470] / [i915#10501]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-adlp-11/igt at kms_scaling_modes@scaling-mode-none.html - fi-hsw-4770: NOTRUN -> [SKIP][33] +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-hsw-4770/igt at kms_scaling_modes@scaling-mode-none.html - fi-cfl-8109u: NOTRUN -> [SKIP][34] +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/fi-cfl-8109u/igt at kms_scaling_modes@scaling-mode-none.html - bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#3555] / [i915#5030] / [i915#9041]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-mtlp-8/igt at kms_scaling_modes@scaling-mode-none.html - bat-jsl-1: NOTRUN -> [SKIP][36] ([i915#3555] / [i915#5030]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-jsl-1/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - bat-rplp-1: NOTRUN -> [SKIP][37] ([i915#5030]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-rplp-1/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html - bat-jsl-3: NOTRUN -> [SKIP][38] ([i915#5030]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-jsl-3/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_scaling_modes@scaling-mode-none at pipe-b-edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][39] ([i915#5030]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-mtlp-8/igt at kms_scaling_modes@scaling-mode-none at pipe-b-edp-1.html - bat-jsl-1: NOTRUN -> [SKIP][40] ([i915#5030]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-jsl-1/igt at kms_scaling_modes@scaling-mode-none at pipe-b-edp-1.html * igt at kms_scaling_modes@scaling-mode-none at pipe-c-edp-1: - bat-twl-2: NOTRUN -> [SKIP][41] ([i915#11495] / [i915#5030]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-twl-2/igt at kms_scaling_modes@scaling-mode-none at pipe-c-edp-1.html * igt at kms_scaling_modes@scaling-mode-none at pipe-d-edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][42] ([i915#5030] / [i915#9041]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/bat-mtlp-8/igt at kms_scaling_modes@scaling-mode-none at pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11495 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12387 * Linux: CI_DRM_15892 -> CI_DRM_15903 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15903: 3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12387: 274698a2b96b8a1881a09d41b3f1f3dbda27607e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/index.html From patchwork at emeril.freedesktop.org Sat Jan 4 12:35:39 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 12:35:39 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Update_skip_messages_in_sca?= =?utf-8?q?ling_modes_=28rev3=29?= In-Reply-To: <20250104113128.893119-1-ramanaidu.naladala@intel.com> References: <20250104113128.893119-1-ramanaidu.naladala@intel.com> Message-ID: <173599413909.3146730.5509702862353717819@b555e5b46a47> == Series Details == Series: Update skip messages in scaling modes (rev3) URL : https://patchwork.freedesktop.org/series/141850/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12387_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12387_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_scaling_modes@scaling-mode-full: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2463]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-adlp-vf/igt at kms_scaling_modes@scaling-mode-full.html - bat-lnl-2: NOTRUN -> [SKIP][2] ([Intel XE#2235]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-lnl-2/igt at kms_scaling_modes@scaling-mode-full.html - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1024]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-pvc-2/igt at kms_scaling_modes@scaling-mode-full.html - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#455]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-dg2-oem2/igt at kms_scaling_modes@scaling-mode-full.html - bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-atsm-2/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#3419]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-bmg-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html - bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#2413]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#2413] / [Intel XE#374]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-lnl-1/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-c-edp-1: - bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#374]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/bat-lnl-1/igt at kms_scaling_modes@scaling-mode-none at pipe-c-edp-1.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12387 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2435-3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 IGTPW_12387: 274698a2b96b8a1881a09d41b3f1f3dbda27607e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2435-3491399dc8f0c0c3bcec5316c66e60f5f44e1f10: 3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 4 14:05:39 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 14:05:39 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Update_skip_messages_in_sc?= =?utf-8?q?aling_modes_=28rev3=29?= In-Reply-To: <20250104113128.893119-1-ramanaidu.naladala@intel.com> References: <20250104113128.893119-1-ramanaidu.naladala@intel.com> Message-ID: <173599953901.3182950.12875054035162086957@b555e5b46a47> == Series Details == Series: Update skip messages in scaling modes (rev3) URL : https://patchwork.freedesktop.org/series/141850/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12387_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12387_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12387_full, please notify your bug team (I915-ci-infra at lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12387_full: ### IGT changes ### #### Possible regressions #### * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at bd-dp2-hdmi-a3.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip@2x-flip-vs-suspend-interruptible at bd-dp2-hdmi-a3.html * igt at xe_oa@rc6-disable: - shard-bmg: [PASS][4] -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_oa@rc6-disable.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at xe_oa@rc6-disable.html Known issues ------------ Here are the changes found in XEIGTPW_12387_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#2423]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getstats.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at core_getstats.html * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#1885]) +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html * igt at fbdev@info: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2134]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at fbdev@info.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3157]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#3719]) +3 other tests fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2423] / [i915#2575]) +23 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_atomic@plane-invalid-params-fence.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3279]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2423] / [i915#2575]) +251 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3007]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2136]) +80 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@4-tiled-addfb-size-overflow.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3658]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +8 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +6 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#2136] / [Intel XE#2351]) +36 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +43 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#3862]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#3432]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#1727]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#1727] / [Intel XE#3113]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#306]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2341]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#3278]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2321]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2320]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#455]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1424]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#309]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3007]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#1475]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#2141]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#3383]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2244]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#2882] / [Intel XE#3288]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3288] / [Intel XE#3321]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#2597]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3879]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip@2x-flip-vs-suspend-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][78] -> [INCOMPLETE][79] ([Intel XE#2049] / [Intel XE#2597]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-suspend.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][80] ([Intel XE#2597]) +3 other tests incomplete [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][81] ([Intel XE#2049]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1: - shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#886]) +2 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401] / [Intel XE#1745]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1397]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2351]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2231]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#651]) +7 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2311]) +14 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#2333]) +9 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2352]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2136]) +19 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2313]) +26 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +18 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1469]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#653]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1503]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#3898]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-8/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#346]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2927]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][111] -> [FAIL][112] ([Intel XE#718]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2499]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#2446]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_rpm@modeset-non-lpsp.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2893]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1489]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-4/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#3414] / [Intel XE#3904]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2413]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1435]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#362]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2450]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1499]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#756]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#756]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][131] ([Intel XE#3869]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#3889]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2905]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-discovery.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#688]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_evict@evict-cm-threads-small-multi-vm.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][137] ([Intel XE#2364]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-8/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][138] ([Intel XE#1600]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1130]) +462 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1392]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2322]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#288]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_exec_queue_property@invalid-exec-queue: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#1130]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_exec_queue_property@invalid-exec-queue.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][145] -> [SKIP][146] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_live_ktest@xe_bo.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_live_ktest@xe_bo.html - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1192]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#2229]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_module_load@reload: - shard-dg2-set2: [PASS][150] -> [FAIL][151] ([Intel XE#3546]) +1 other test fail [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@reload.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_module_load@reload.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541] / [Intel XE#3573]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1420] / [Intel XE#2838]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-4/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2284]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#584]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-mocs: - shard-bmg: [PASS][156] -> [FAIL][157] ([Intel XE#3902]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm@s3-mocs.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_pm@s3-mocs.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][158] -> [ABORT][159] ([Intel XE#1358] / [Intel XE#1607]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_pm@s4-basic.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-2/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-multiple-execs: - shard-lnl: [PASS][161] -> [ABORT][162] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_pm@s4-multiple-execs.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-2/igt at xe_pm@s4-multiple-execs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#579]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#944]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#944]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-4/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#3342]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1130]) +36 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_vm@invalid-extensions.html * igt at xe_vm@mmap-style-bind-userptr-either-side-full: - shard-bmg: [PASS][168] -> [SKIP][169] ([Intel XE#1130]) +15 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_vm@mmap-style-bind-userptr-either-side-full.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_vm@mmap-style-bind-userptr-either-side-full.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][170] ([Intel XE#3321]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][172] ([Intel XE#301]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][174] ([Intel XE#2597]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: - shard-bmg: [INCOMPLETE][176] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: [FAIL][178] ([Intel XE#2882]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][180] -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][182] ([Intel XE#1035]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][184] ([Intel XE#718]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][186] ([Intel XE#3313]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][188] -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][190] ([Intel XE#2883]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][192] ([Intel XE#1473]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][194] ([Intel XE#3865]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][196] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-6/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][198] ([Intel XE#3088]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][200] -> [PASS][201] +1 other test pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-3/igt at xe_pm_residency@gt-c6-freeze at gt1.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][202] ([Intel XE#958]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][204] ([Intel XE#3781]) -> [SKIP][205] ([Intel XE#3007]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_async_flips@crc.html - shard-dg2-set2: [INCOMPLETE][206] ([Intel XE#3781]) -> [SKIP][207] ([Intel XE#2423] / [i915#2575]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@crc.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][208] ([Intel XE#3781]) -> [INCOMPLETE][209] ([Intel XE#3781] / [Intel XE#3946]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-434/igt at kms_async_flips@crc-atomic.html - shard-bmg: [INCOMPLETE][210] ([Intel XE#3781]) -> [INCOMPLETE][211] ([Intel XE#3781] / [Intel XE#3946]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc-atomic.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_async_flips@crc-atomic.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][212] ([Intel XE#316]) -> [SKIP][213] ([Intel XE#2136]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][214] ([Intel XE#316]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][216] ([Intel XE#607]) -> [SKIP][217] ([Intel XE#2136] / [Intel XE#2351]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][218] ([Intel XE#610]) -> [SKIP][219] ([Intel XE#2136]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][220] ([Intel XE#1124]) -> [SKIP][221] ([Intel XE#2136]) +21 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][222] ([Intel XE#1124]) -> [SKIP][223] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][224] ([Intel XE#607]) -> [SKIP][225] ([Intel XE#2136]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][226] ([Intel XE#1124]) -> [SKIP][227] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][230] ([Intel XE#2191]) -> [SKIP][231] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][232] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][234] ([Intel XE#2907]) -> [SKIP][235] ([Intel XE#2136]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: - shard-bmg: [SKIP][236] ([Intel XE#2887]) -> [SKIP][237] ([Intel XE#2136] / [Intel XE#2231]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][238] ([Intel XE#3442]) -> [SKIP][239] ([Intel XE#2136]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][240] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][241] ([Intel XE#2136]) +32 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][242] ([Intel XE#2724]) -> [SKIP][243] ([Intel XE#2136] / [Intel XE#2231]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_cdclk@plane-scaling.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][244] ([Intel XE#306]) -> [SKIP][245] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@gamma.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_chamelium_color@gamma.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][246] ([Intel XE#373]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575]) +28 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][248] ([Intel XE#1178]) -> [SKIP][249] ([Intel XE#3007]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_content_protection@atomic.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][250] ([Intel XE#307]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@dp-mst-type-1.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][252] ([Intel XE#1178]) -> [SKIP][253] ([Intel XE#2423] / [i915#2575]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@lic-type-0.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][254] ([Intel XE#308]) -> [SKIP][255] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x170.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: [SKIP][256] ([Intel XE#2320]) -> [SKIP][257] ([Intel XE#3007]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_crc@cursor-random-64x21.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][258] ([Intel XE#323]) -> [SKIP][259] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][260] ([Intel XE#2323]) -> [SKIP][261] ([Intel XE#3007]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][262] ([Intel XE#455]) -> [SKIP][263] ([Intel XE#2351]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_dsc@dsc-basic.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_dsc@dsc-basic.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][264] ([Intel XE#776]) -> [SKIP][265] ([Intel XE#2136]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_fbcon_fbt@psr-suspend.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][266] ([Intel XE#701]) -> [SKIP][267] ([Intel XE#2423] / [i915#2575]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@chamelium.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][268] ([Intel XE#1137]) -> [SKIP][269] ([Intel XE#2423] / [i915#2575]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@dp-mst.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][270] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: [SKIP][272] ([Intel XE#455]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][274] ([Intel XE#455]) -> [SKIP][275] ([Intel XE#2136]) +11 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-bmg: [SKIP][276] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2231]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][278] ([Intel XE#2311]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][280] ([Intel XE#651]) -> [SKIP][281] ([Intel XE#2136]) +62 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][282] ([Intel XE#651]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) +24 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][284] ([Intel XE#877]) -> [FAIL][285] ([Intel XE#2333]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][286] ([Intel XE#2333]) -> [SKIP][287] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [FAIL][288] ([Intel XE#2333]) -> [DMESG-FAIL][289] ([Intel XE#877]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][290] ([Intel XE#658]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][292] ([Intel XE#653]) -> [SKIP][293] ([Intel XE#2136]) +67 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][294] ([Intel XE#1158]) -> [SKIP][295] ([Intel XE#2136]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][296] ([Intel XE#653]) -> [SKIP][297] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][298] ([Intel XE#2313]) -> [SKIP][299] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][300] -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_hdr@bpc-switch.html * igt at kms_histogram@algo-basic: - shard-dg2-set2: [SKIP][302] ([Intel XE#3897]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_histogram@algo-basic.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_histogram@algo-basic.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][304] ([Intel XE#2927]) -> [SKIP][305] ([Intel XE#2136]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][306] ([Intel XE#2925]) -> [SKIP][307] ([Intel XE#2136]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][308] ([Intel XE#2493]) -> [SKIP][309] ([Intel XE#3007]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_multiple@tiling-y.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][310] ([Intel XE#361]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][312] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][314] ([Intel XE#2938]) -> [SKIP][315] ([Intel XE#2136]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][316] ([Intel XE#870]) -> [SKIP][317] ([Intel XE#2136]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_backlight@fade.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][318] ([Intel XE#1122]) -> [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_pm_dc@dc3co-vpb-simulation.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][320] ([Intel XE#1129]) -> [SKIP][321] ([Intel XE#2136]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][322] ([Intel XE#3309]) -> [SKIP][323] ([Intel XE#2136]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_dc@dc5-retention-flops.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][324] ([Intel XE#1129]) -> [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][326] ([Intel XE#1489]) -> [SKIP][327] ([Intel XE#2136]) +21 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][328] ([Intel XE#1122]) -> [SKIP][329] ([Intel XE#2136]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][330] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][331] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr@fbc-pr-sprite-blt.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][332] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][333] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@fbc-psr-sprite-plane-move.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-plane-move.html * igt at kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][334] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][335] ([Intel XE#2136]) +31 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-render.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-render.html * igt at kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][336] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][337] ([Intel XE#2351]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@psr-primary-page-flip.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][338] ([Intel XE#2939]) -> [SKIP][339] ([Intel XE#2136]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][340] ([Intel XE#3414]) -> [SKIP][341] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][342] ([Intel XE#1127]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][344] ([Intel XE#362]) -> [SKIP][345] ([Intel XE#2423] / [i915#2575]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flip-dpms: - shard-bmg: [SKIP][346] ([Intel XE#1499]) -> [SKIP][347] ([Intel XE#3007]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_vrr@flip-dpms.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][348] ([Intel XE#455]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) +25 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_vrr@flipline.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_vrr@flipline.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][350] ([Intel XE#756]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-fb-id.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at kms_writeback@writeback-fb-id.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][352] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][353] ([Intel XE#1130]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][354] ([Intel XE#1126]) -> [SKIP][355] ([Intel XE#1130]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][356] ([Intel XE#2905]) -> [SKIP][357] ([Intel XE#1130]) +35 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-close.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][358] ([Intel XE#3889]) -> [SKIP][359] ([Intel XE#1130]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][360] ([Intel XE#1600]) -> [SKIP][361] ([Intel XE#1130]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][362] ([Intel XE#1473]) -> [SKIP][363] ([Intel XE#1130]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-bmg: [SKIP][364] ([Intel XE#2322]) -> [SKIP][365] ([Intel XE#1130]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][366] ([Intel XE#288]) -> [SKIP][367] ([Intel XE#1130]) +78 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][368] ([Intel XE#2360]) -> [SKIP][369] ([Intel XE#1130]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][370] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][371] ([Intel XE#1130]) +18 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_oa@polling-small-buf.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_oa@polling-small-buf.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][372] ([Intel XE#977]) -> [SKIP][373] ([Intel XE#1130]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pat@pat-index-xe2.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][374] ([Intel XE#979]) -> [SKIP][375] ([Intel XE#1130]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [FAIL][376] ([Intel XE#1173]) -> [SKIP][377] ([Intel XE#1061]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_peer2peer@read.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][378] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][379] ([Intel XE#1130]) +5 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mmap-vram.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][380] ([Intel XE#2284]) -> [SKIP][381] ([Intel XE#1130]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_pm@s4-d3cold-basic-exec.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-bmg-4/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][382] ([Intel XE#944]) -> [SKIP][383] ([Intel XE#1130]) +7 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-engines.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_query@multigpu-query-engines.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][384] ([Intel XE#3342]) -> [SKIP][385] ([Intel XE#1130]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898 [Intel XE#3902]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3902 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12387 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2435-3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 IGTPW_12387: 274698a2b96b8a1881a09d41b3f1f3dbda27607e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2435-3491399dc8f0c0c3bcec5316c66e60f5f44e1f10: 3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12387/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 4 14:07:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 04 Jan 2025 14:07:57 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_Update_skip_messages_in_?= =?utf-8?q?scaling_modes_=28rev3=29?= In-Reply-To: <20250104113128.893119-1-ramanaidu.naladala@intel.com> References: <20250104113128.893119-1-ramanaidu.naladala@intel.com> Message-ID: <173599967706.3183820.16029734438437028512@b555e5b46a47> == Series Details == Series: Update skip messages in scaling modes (rev3) URL : https://patchwork.freedesktop.org/series/141850/ State : success == Summary == CI Bug Log - changes from CI_DRM_15903_full -> IGTPW_12387_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_12387_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12387_full, please notify your bug team (I915-ci-infra at 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_12387/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12387_full: ### IGT changes ### #### Warnings #### * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][1] ([i915#9820]) -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][3] ([i915#10131] / [i915#10887]) -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at i915_module_load@reload-with-fault-injection.html New tests --------- New tests have been introduced between CI_DRM_15903_full and IGTPW_12387_full: ### New IGT tests (1) ### * igt at gem_render_copy@yf-tiled-to-vebox-linear at lmem0: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_12387_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at drm_fdinfo@busy-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at drm_fdinfo@busy-check-all at vecs1.html * igt at drm_fdinfo@isolation at vecs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at drm_fdinfo@isolation at vecs0.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-1/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-3/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb7/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][21] ([i915#12543] / [i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4036]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][27] ([i915#11965]) +2 other tests fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-3/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][31] +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at gem_exec_params@secure-non-root.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-5/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-scanout: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-4/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +14 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +13 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at gem_exec_schedule@preempt-queue-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][38] +413 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb4/igt at gem_exec_schedule@thriceslice.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-2/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-3/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_gtt_cpu_tlb.html * igt at gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#2190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][44] ([i915#2190]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-multi: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at gem_lmem_swapping@heavy-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk7/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at gem_lmem_swapping@verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#12193]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#284]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at gem_media_vme.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-8/igt at gem_mmap_gtt@cpuset-big-copy.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][55] -> [ABORT][56] ([i915#10729]) +1 other test abort [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +8 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb4/igt at gem_pread@exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-2/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at gem_pread@snoop.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][64] ([i915#12964]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][65] ([i915#12917] / [i915#12964]) +1 other test timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#13398]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at gem_pxp@protected-raw-src-copy-not-readible.html - shard-tglu: [PASS][68] -> [SKIP][69] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-2/igt at gem_pxp@protected-raw-src-copy-not-readible.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at gem_pxp@verify-pxp-stale-ctx-execution.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-2/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-3/igt at gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#3323]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-6/igt at gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][79] ([i915#3323]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk1/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-8/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4958]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-3/igt at gen9_exec_parse@bb-start-far.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-1/igt at gen9_exec_parse@secure-batches.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][93] -> [ABORT][94] ([i915#10887]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#7178]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [PASS][98] -> [INCOMPLETE][99] ([i915#12455]) +1 other test incomplete [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-11/igt at i915_pm_freq_api@freq-suspend at gt0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-5/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#6590]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#12797]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk6/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4387]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#7984]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at i915_power@sanity.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][107] ([i915#1982] / [i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk9/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) +1 other test dmesg-warn [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at i915_selftest@mock at memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk9/igt at i915_selftest@mock at memory_region.html * igt at i915_selftest@mock at sanitycheck: - shard-tglu-1: NOTRUN -> [ABORT][110] ([i915#13010]) +2 other tests abort [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at i915_selftest@mock at sanitycheck.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][111] -> [INCOMPLETE][112] ([i915#4817]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-1/igt at i915_suspend@basic-s3-without-i915.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html - shard-tglu: NOTRUN -> [INCOMPLETE][113] ([i915#7443]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-8/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#4817]) +1 other test incomplete [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk1/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#8709]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-2-y-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-hdmi-a-3-y-rc-ccs.html * igt at kms_async_flips@crc: - shard-snb: NOTRUN -> [INCOMPLETE][119] ([i915#13287] / [i915#9878]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb7/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][120] ([i915#13287]) +3 other tests crash [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-8/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][121] ([i915#13287]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_async_flips@crc at pipe-a-dp-4.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [INCOMPLETE][122] ([i915#13287] / [i915#13423]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb7/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_async_flips@test-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#10333]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-8/igt at kms_async_flips@test-cursor-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_big_fb@4-tiled-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#5286]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-2/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-8/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +185 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +54 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +64 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#12805]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#6095]) +8 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +75 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +159 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-a-dp-4.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +19 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#12313]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#12313]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@mode-transition: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#3742]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3742]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#7828]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#7828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-2/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#7828]) +12 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-1/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3116]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-6/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3116] / [i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3299]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][165] ([i915#7118] / [i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][166] -> [DMESG-WARN][167] ([i915#12964]) +47 other tests dmesg-warn [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-256x85.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at kms_cursor_crc@cursor-sliding-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#13049]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-6/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8814]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at kms_cursor_crc@cursor-sliding-max-size.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_crc@cursor-suspend: - shard-dg1: [PASS][175] -> [DMESG-WARN][176] ([i915#4423]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-12/igt at kms_cursor_crc@cursor-suspend.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [DMESG-WARN][177] ([i915#4423]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: [PASS][178] -> [SKIP][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb4/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#4103]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#13046] / [i915#5354]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][183] +14 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [FAIL][184] ([i915#2346]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][185] -> [FAIL][186] ([i915#2346]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9067]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-8/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#4103]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][191] ([i915#2346]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk8/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#9833]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#9723]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9833]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#9723]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#8588]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#8588]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#12402]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#12402]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#12402]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3840] / [i915#9053]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3469]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#4854]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-3/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#4854]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9337]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#9337]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-6/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#658]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][211] ([i915#658]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][212] ([i915#658]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3637]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637]) +6 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3637]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-3/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2: NOTRUN -> [SKIP][217] ([i915#9934]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-snb: [PASS][220] -> [FAIL][221] ([i915#11989]) +1 other test fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb4/igt at kms_flip@2x-wf_vblank-ts-check.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#11989]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-6/igt at kms_flip@blocking-wf_vblank.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-2/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][224] ([i915#11989]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-8/igt at kms_flip@blocking-wf_vblank at a-hdmi-a1.html * igt at kms_flip@dpms-off-confusion-interruptible at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][225] ([i915#12964]) +15 other tests dmesg-warn [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_flip@dpms-off-confusion-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#8381]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@wf_vblank-ts-check: - shard-tglu: [PASS][227] -> [FAIL][228] ([i915#11989]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-3/igt at kms_flip@wf_vblank-ts-check.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672] / [i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#8813]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#8813]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8708]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][243] +47 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#5439]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-tglu-1: NOTRUN -> [SKIP][245] +42 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1825]) +8 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9766]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9766]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#3023]) +20 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#8708]) +26 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3458]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +15 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#3458]) +13 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +25 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#1825]) +42 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-5/igt at kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle-dpms: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_histogram@algo-color: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#13389]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#12388]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#12339]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-1/igt at kms_joiner@basic-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#12339]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12394]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#1839]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][267] ([i915#10647] / [i915#12169]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk4/igt at kms_plane_alpha_blend@alpha-opaque-fb.html * igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][268] ([i915#10647]) +1 other test fail [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk4/igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8806]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-5/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#12247]) +14 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#12247]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#12247] / [i915#6953]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#12247]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#6953]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#12247]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#5354]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#9812]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-8/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#9685]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][280] ([i915#9685]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#3828]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-6/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][282] ([i915#12913]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-3/igt at kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5978]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#3361]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#8430]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][286] ([i915#8430]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#9519]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][288] -> [SKIP][289] ([i915#9519]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#9519]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9519]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][292] ([i915#10553]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk9/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#6524] / [i915#6805]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#6524]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][295] ([i915#11520]) +11 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#11520]) +7 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#11520]) +5 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][298] ([i915#11520]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk7/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#12316]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-1/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#11520]) +10 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#11520]) +6 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#11520]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9683]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-suspend: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#9688]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at kms_psr@fbc-pr-suspend.html * igt at kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9732]) +18 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-9/igt at kms_psr@fbc-psr2-no-drrs.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +15 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#1072] / [i915#9732]) +20 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-6/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9732]) +13 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +21 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][310] +334 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk6/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9685]) +3 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#4884]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#5289]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-2/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#5289]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#5289]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#5289]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#5289]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12755]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-8/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#12755]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][320] ([i915#13179]) +1 other test abort [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3555]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-17/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-snb: [PASS][322] -> [FAIL][323] ([IGT#160] / [i915#6493]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb2/igt at kms_sysfs_edid_timing.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb7/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#8623]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#8623]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][326] +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-8/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][327] ([i915#12276]) +1 other test incomplete [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk7/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#9906]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-11/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9906]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-3/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9906]) +3 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9906]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#2437]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-6/igt at kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][333] ([i915#2437]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#2437] / [i915#9412]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#2437]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][336] ([i915#2437]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#7387]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at perf@global-sseu-config-invalid.html * igt at perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#2433]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][339] -> [FAIL][340] ([i915#4349]) +4 other tests fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#8516]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#3708] / [i915#4077]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-13/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#3291] / [i915#3708]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#3708] / [i915#4077]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-2/igt at prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#3708]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-5/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][346] +75 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-10/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#9917]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-12/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][348] ([i915#12910]) +9 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][349] ([i915#12910]) +9 other tests fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-5/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#4818]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#4818]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-7/igt at tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][352] ([i915#4818]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][353] ([i915#13363]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-4/igt at gem_eio@kms.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at gem_eio@kms.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][355] ([i915#7975] / [i915#8213]) -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-18/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][357] -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-5/igt at gem_lmem_swapping@verify-random.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at gem_lmem_swapping@verify-random.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: [SKIP][359] ([i915#4270]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-10/igt at gem_pxp@reject-modify-context-protection-off-2.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-7/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][361] ([i915#12964]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at gem_workarounds@suspend-resume-fd.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][363] ([i915#12797]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk7/igt at i915_pm_rpm@system-suspend.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk1/igt at i915_pm_rpm@system-suspend.html * igt at i915_selftest@live: - shard-tglu: [ABORT][365] ([i915#12061] / [i915#13010]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-7/igt at i915_selftest@live.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-8/igt at i915_selftest@live.html * igt at kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: [DMESG-WARN][367] ([i915#12917] / [i915#12964]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-5/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-rkl: [FAIL][369] -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-glk: [FAIL][371] ([i915#2346]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk3/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a1: - shard-glk: [DMESG-FAIL][373] ([i915#118] / [i915#1982]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk8/igt at kms_flip@plain-flip-ts-check at a-hdmi-a1.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk4/igt at kms_flip@plain-flip-ts-check at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at b-hdmi-a1: - shard-glk: [FAIL][375] ([i915#11989]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk8/igt at kms_flip@plain-flip-ts-check at b-hdmi-a1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk4/igt at kms_flip@plain-flip-ts-check at b-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at d-hdmi-a1: - shard-tglu: [FAIL][377] ([i915#11989]) -> [PASS][378] +4 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-10/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-6/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][379] ([i915#6880]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: [DMESG-WARN][381] ([i915#4423]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][383] -> [PASS][384] +2 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-rkl: [DMESG-WARN][385] ([i915#12964]) -> [PASS][386] +22 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][387] ([i915#3555] / [i915#8228]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-5/igt at kms_hdr@bpc-switch-suspend.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][389] ([i915#9519]) -> [PASS][390] +1 other test pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at perf_pmu@busy-accuracy-2 at vecs1: - shard-dg2: [FAIL][391] ([i915#4349]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-3/igt at perf_pmu@busy-accuracy-2 at vecs1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-8/igt at perf_pmu@busy-accuracy-2 at vecs1.html * igt at perf_pmu@module-unload: - shard-tglu: [ABORT][393] ([i915#13010]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-6/igt at perf_pmu@module-unload.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-4/igt at perf_pmu@module-unload.html * igt at perf_pmu@render-node-busy-idle at vcs1: - shard-mtlp: [FAIL][395] ([i915#4349]) -> [PASS][396] +5 other tests pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-3/igt at perf_pmu@render-node-busy-idle at vcs1.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-mtlp-4/igt at perf_pmu@render-node-busy-idle at vcs1.html #### Warnings #### * igt at gem_exec_big@single: - shard-tglu: [ABORT][397] -> [ABORT][398] ([i915#11713]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-6/igt at gem_exec_big@single.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-tglu-2/igt at gem_exec_big@single.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: [SKIP][399] ([i915#4270]) -> [TIMEOUT][400] ([i915#12964]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-3/igt at gem_pxp@fail-invalid-protected-context.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-7/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: [ABORT][401] ([i915#13449]) -> [ABORT][402] ([i915#13263] / [i915#13449]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb7/igt at gem_tiled_swapping@non-threaded.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb5/igt at gem_tiled_swapping@non-threaded.html * igt at i915_selftest@mock: - shard-rkl: [DMESG-WARN][403] ([i915#12964] / [i915#9311]) -> [DMESG-WARN][404] ([i915#9311]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-3/igt at i915_selftest@mock.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-2/igt at i915_selftest@mock.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][405] ([i915#12761] / [i915#1982]) -> [INCOMPLETE][406] ([i915#12761]) +1 other test incomplete [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk2/igt at kms_async_flips@async-flip-suspend-resume.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk1/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@crc: - shard-dg2: [WARN][407] ([i915#13287]) -> [INCOMPLETE][408] ([i915#13287] / [i915#9878]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-5/igt at kms_async_flips@crc.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-10/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-glk: [INCOMPLETE][409] ([i915#13287]) -> [INCOMPLETE][410] ([i915#13287] / [i915#13423]) +1 other test incomplete [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk2/igt at kms_async_flips@crc-atomic.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk4/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-snb: [INCOMPLETE][411] ([i915#13287] / [i915#13423]) -> [INCOMPLETE][412] ([i915#13287]) +1 other test incomplete [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb7/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-snb4/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: [TIMEOUT][413] ([i915#7173]) -> [SKIP][414] ([i915#7118] / [i915#9424]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-5/igt at kms_content_protection@atomic-dpms.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][415] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][416] ([i915#12745] / [i915#4839]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk3/igt at kms_flip@2x-flip-vs-suspend.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk9/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][417] ([i915#1982] / [i915#4839]) -> [INCOMPLETE][418] ([i915#4839]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk3/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-glk9/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: [SKIP][419] ([i915#3458]) -> [SKIP][420] ([i915#10433] / [i915#3458]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][421] ([i915#4070] / [i915#4816]) -> [SKIP][422] ([i915#4816]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/shard-rkl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i91 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12387/index.html From thomas.petazzoni at bootlin.com Sat Jan 4 21:44:29 2025 From: thomas.petazzoni at bootlin.com (Thomas Petazzoni) Date: Sat, 4 Jan 2025 22:44:29 +0100 Subject: [PATCH i-g-t] lib/igt_aux.c: since procps-ng 4.0.5, PIDS_VAL() takes 3 arguments, not 4 In-Reply-To: References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: <20250104224429.0d3d00de@windsurf> Hello Jonathan, Thanks for the quick feedback! On Fri, 3 Jan 2025 23:33:27 +0000 "Cavitt, Jonathan" wrote: > "HAVE_LIBPROC2_POST_4_0_5_API" works as a name for this new tag, > though I wonder if "HAVE_LIBPROC2_NO_INFO" would also work? I don't have a strong opinion on the macro name, but "NO_INFO" sounds very generic. Here we're just talking about the "info" argument of this specific PIDS_VAL() macro. It is worth mentioning that I had reported the issue to upstream procps-ng and they don't consider it as a bug: https://gitlab.com/procps-ng/procps/-/issues/366 Also, they said that the SONAME has changed. Which they indeed did in: https://gitlab.com/procps-ng/procps/-/commit/f8d20531f840e280fcbe1f3a0634ab72c9b4e74d So maybe our macro name should be based somehow on this SONAME, which identifies the API version? > I don't see any other granular version checks in the meson build file (at > least, I don't see any that aren't strict version requirements for certain > dependencies), so AFAICT this type of tag is fairly novel. So whatever > name we end up choosing may end up inadvertently becoming a > standard naming convention for future tags like this one. Note that I am not entirely happy with it being a version check. Ideally, we shouldn't check the version, but rather test the feature itself: build a simple program that uses the 4 argument variant of PIDS_VAL() and decide depending on the success/failure which variant we should use. This is generally less fragile than a version check, at least IMO. Best regards, Thomas -- Thomas Petazzoni, co-owner and CEO, Bootlin Embedded Linux and Kernel engineering and training https://bootlin.com From vitaly.prosyak at amd.com Sun Jan 5 07:15:49 2025 From: vitaly.prosyak at amd.com (vitaly.prosyak at amd.com) Date: Sun, 5 Jan 2025 02:15:49 -0500 Subject: [PATCH 1/3] lib/amdgpu: Extract PCI device address from file descriptor Message-ID: <20250105071551.113830-1-vitaly.prosyak@amd.com> From: "Jesse.zhang at amd.com" Extract the PCI domain, device, and function numbers from the file descriptor associated with the amdgpu device. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher v2 : improve commit message, formatting and some coding (Vitaly) Suggest-by: Vitaly Prosyak Signed-off-by: Jesse Zhang Reviewed-by: Vitaly Prosyak --- lib/amdgpu/amd_ip_blocks.c | 143 ++++++++++++++++++++++++++----------- lib/amdgpu/amd_ip_blocks.h | 17 +++++ 2 files changed, 118 insertions(+), 42 deletions(-) diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c index cc4163bfc..9749e2072 100644 --- a/lib/amdgpu/amd_ip_blocks.c +++ b/lib/amdgpu/amd_ip_blocks.c @@ -810,10 +810,9 @@ int setup_amdgpu_ip_blocks(uint32_t major, uint32_t minor, struct amdgpu_gpu_inf igt_info("amdgpu: unknown (family_id, chip_external_rev): (%u, %u)\n", amdinfo->family_id, amdinfo->chip_external_rev); return -1; - } else { - igt_info("amdgpu: %s (family_id, chip_external_rev): (%u, %u)\n", - info->name, amdinfo->family_id, amdinfo->chip_external_rev); } + igt_info("amdgpu: %s (family_id, chip_external_rev): (%u, %u)\n", + info->name, amdinfo->family_id, amdinfo->chip_external_rev); if (info->family >= CHIP_GFX1100) { info->chip_class = GFX11; @@ -1007,43 +1006,103 @@ asic_rings_readness(amdgpu_device_handle device_handle, uint32_t mask, bool is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type) { - char cmd[256]; - FILE *fp, *fp2; - char buffer[100]; - bool enable = false; - char reset_mask[100]; - - if(ip_type == AMD_IP_GFX) - snprintf(reset_mask, sizeof(reset_mask) - 1, "gfx_reset_mask"); - else if (ip_type == AMD_IP_COMPUTE) - snprintf(reset_mask, sizeof(reset_mask) - 1, "compute_reset_mask"); - else - snprintf(reset_mask, sizeof(reset_mask) - 1, "sdma_reset_mask"); - - snprintf(cmd, sizeof(cmd) - 1, "sudo cat /sys/kernel/debug/dri/0/name |grep -oP '(?<=dev=)[0-9:.]+'"); - fp = popen(cmd, "r"); - if (fp == NULL) - return false; - - if (fgets(buffer, 13, fp) != NULL) { - snprintf(cmd,sizeof(cmd) - 1,"sudo cat /sys/bus/pci/devices/%s/%s | grep -oP '%s'", - buffer,reset_mask, - reset_type & AMDGPU_RESET_TYPE_FULL ? "full": - reset_type & AMDGPU_RESET_TYPE_SOFT_RESET ? "soft": - reset_type & AMDGPU_RESET_TYPE_PER_QUEUE ? "queue": "pipe"); - - fp2 = popen(cmd, "r"); - if (fp2 == NULL) { - pclose(fp); - return false; - } - - if (fgets(buffer, 13, fp2) != NULL) { - enable = true; - } - pclose(fp2); - } - pclose(fp); - - return enable; + char cmd[256]; + FILE *fp, *fp2; + char buffer[100]; + bool enable = false; + char reset_mask[100]; + + if (ip_type == AMD_IP_GFX) + snprintf(reset_mask, sizeof(reset_mask) - 1, "gfx_reset_mask"); + else if (ip_type == AMD_IP_COMPUTE) + snprintf(reset_mask, sizeof(reset_mask) - 1, "compute_reset_mask"); + else + snprintf(reset_mask, sizeof(reset_mask) - 1, "sdma_reset_mask"); + + snprintf(cmd, sizeof(cmd) - 1, "sudo cat /sys/kernel/debug/dri/0/name |grep -oP '(?<=dev=)[0-9:.]+'"); + fp = popen(cmd, "r"); + if (fp == NULL) + return false; + + if (fgets(buffer, 13, fp) != NULL) { + snprintf(cmd, sizeof(cmd) - 1, "sudo cat /sys/bus/pci/devices/%s/%s | grep -oP '%s'", + buffer, reset_mask, + reset_type & AMDGPU_RESET_TYPE_FULL ? "full" : + reset_type & AMDGPU_RESET_TYPE_SOFT_RESET ? "soft" : + reset_type & AMDGPU_RESET_TYPE_PER_QUEUE ? "queue" : "pipe"); + + fp2 = popen(cmd, "r"); + if (fp2 == NULL) { + pclose(fp); + return false; + } + + if (fgets(buffer, 13, fp2) != NULL) + enable = true; + pclose(fp2); + } + pclose(fp); + + return enable; +} + +/** + * get_pci_addr_from_fd - Extracts the PCI device address from a file descriptor. + * @fd: The file descriptor to extract the address from. + * @pci: Pointer to a pci_addr struct to store the extracted address. + * + * Returns 0 on success, or a negative error code on failure. + */ +int get_pci_addr_from_fd(int fd, struct pci_addr *pci) +{ + char path[80]; + struct stat st; + char link[20], pci_path[256]; + char *buf; + int len, sysfs; + int ret; + + // Check if the file descriptor is a character device and can be accessed + if (fstat(fd, &st) < 0 || !S_ISCHR(st.st_mode)) + return -1; + + snprintf(path, sizeof(path), "/sys/dev/char/%d:%d", + major(st.st_rdev), minor(st.st_rdev)); + + // Check if the sysfs path exists + if (access(path, F_OK) < 0) + return -1; + + // Open the sysfs directory + sysfs = open(path, O_RDONLY); + if (sysfs < 0) + return -1; + + // Read the "device" link from the sysfs directory + snprintf(link, sizeof(link), "device"); + len = readlinkat(sysfs, link, pci_path, sizeof(pci_path) - 1); + if (len == -1) { + close(sysfs); + return -ENOENT; + } + close(sysfs); + // Null-terminate the extracted path + pci_path[len] = '\0'; + + // Find the last occurrence of '/' in the extracted path + buf = strrchr(pci_path, '/'); + if (!buf) + return -ENOENT; + + // Extract the PCI device address from the path using sscanf + ret = sscanf(buf, "/%4x:%2x:%2x.%2x", &pci->domain, &pci->bus, + &pci->device, &pci->function); + + if (ret != 4) { + igt_info("error %s Unable to extract PCI device address from '%s\n", + __FUNCTION__, buf); + return -ENOENT; + } + + return 0; } diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 337ef3c25..dc4d87151 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -8,6 +8,13 @@ #define AMD_IP_BLOCKS_H #include +#include +#include +#include +#include +#include +#include +#include #include "amd_registers.h" #include "amd_family.h" @@ -183,6 +190,13 @@ struct chip_info { amdgpu_device_handle dev; }; +struct pci_addr { + unsigned int domain; + unsigned int bus; + unsigned int device; + unsigned int function; +}; + extern struct amdgpu_ip_blocks_device amdgpu_ips; extern const struct chip_info *g_pChip; int @@ -220,4 +234,7 @@ asic_rings_readness(amdgpu_device_handle device_handle, uint32_t mask, bool arr[ bool is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type); + +int +get_pci_addr_from_fd(int fd, struct pci_addr *pci); #endif -- 2.34.1 From vitaly.prosyak at amd.com Sun Jan 5 07:15:50 2025 From: vitaly.prosyak at amd.com (vitaly.prosyak at amd.com) Date: Sun, 5 Jan 2025 02:15:50 -0500 Subject: [PATCH 2/3] lib/amdgpu: enhance wait memory helper In-Reply-To: <20250105071551.113830-1-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> Message-ID: <20250105071551.113830-2-vitaly.prosyak@amd.com> From: "Jesse.zhang at amd.com" Test all sdma rings and ensure that all rings can be recovered. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher v2: correct code formatting style (Vitaly) Signed-off-by: Jesse Zhang Reviewed-by: Vitaly Prosyak --- lib/amdgpu/amd_deadlock_helpers.c | 91 ++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 3 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index 87078548c..dabd7ae76 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -43,8 +43,8 @@ write_mem_address(void *data) return 0; } -void -amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +static void +amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uint32_t priority) { amdgpu_context_handle context_handle; amdgpu_bo_handle ib_result_handle; @@ -65,7 +65,11 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty int job_count = 0; struct amdgpu_cmd_base *base_cmd = get_cmd_base(); - r = amdgpu_cs_ctx_create(device_handle, &context_handle); + if( priority == AMDGPU_CTX_PRIORITY_HIGH) + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle); + else + r = amdgpu_cs_ctx_create(device_handle, &context_handle); + igt_assert_eq(r, 0); r = amdgpu_bo_alloc_and_map_raw(device_handle, bo_cmd_size, bo_cmd_size, @@ -169,6 +173,87 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty free_cmd_base(base_cmd); } +void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +{ + int r; + FILE *fp; + char cmd[1024]; + char buffer[128]; + long sched_mask = 0; + struct drm_amdgpu_info_hw_ip info; + uint32_t ring_id, prio; + char sysfs[125]; + + r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info); + igt_assert_eq(r, 0); + if (!info.available_rings) + igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); + + if (ip_type == AMD_IP_GFX) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + else if (ip_type == AMD_IP_COMPUTE) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + else if (ip_type == AMD_IP_DMA) + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); + r = access(sysfs, R_OK); + if (!r) { + fp = popen(cmd, "r"); + if (fp == NULL) + igt_skip("read the sysfs failed: %s \n",sysfs); + + if (fgets(buffer, 128, fp) != NULL) + sched_mask = strtol(buffer, NULL, 16); + + pclose(fp); + } else { + sched_mask = 1; + igt_info("The scheduling ring only enables one for ip %d\n", ip_type); + } + + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) { + /* check sched is ready is on the ring. */ + if (!((1 << ring_id) & sched_mask)) + continue; + + if (sched_mask > 1 && ring_id == 0 && + ip_type == AMD_IP_COMPUTE) { + /* for the compute multiple rings, the first queue + * as high priority compute queue. + * Need to create a high priority ctx. + */ + prio = AMDGPU_CTX_PRIORITY_HIGH; + } else if (sched_mask > 1 && ring_id == 1 && + ip_type == AMD_IP_GFX) { + /* for the gfx multiple rings, pipe1 queue0 as + * high priority graphics queue. + * Need to create a high priority ctx. + */ + prio = AMDGPU_CTX_PRIORITY_HIGH; + } else { + prio = AMDGPU_CTX_PRIORITY_NORMAL; + } + + if (sched_mask > 1) { + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s", + 0x1 << ring_id, sysfs); + r = system(cmd); + igt_assert_eq(r, 0); + } + + amdgpu_wait_memory(device_handle, ip_type, prio); + } + + /* recover the sched mask */ + if (sched_mask > 1) { + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); + r = system(cmd); + igt_assert_eq(r, 0); + } + +} + static void bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, uint32_t priority) -- 2.34.1 From vitaly.prosyak at amd.com Sun Jan 5 07:15:51 2025 From: vitaly.prosyak at amd.com (vitaly.prosyak at amd.com) Date: Sun, 5 Jan 2025 02:15:51 -0500 Subject: [PATCH 3/3] lib/amdpgu: fix the hard code when shedule ring. In-Reply-To: <20250105071551.113830-1-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> Message-ID: <20250105071551.113830-3-vitaly.prosyak@amd.com> From: "Jesse.zhang at amd.com" Implementation of dynamically selected scheduling rings. Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher v2: fix formatting(Vitaly) Suggest-by: Vitaly Prosyak Signed-off-by: Jesse Zhang Reviewed-by: Vitaly Prosyak --- lib/amdgpu/amd_deadlock_helpers.c | 43 ++++++++++++++++++------------- lib/amdgpu/amd_deadlock_helpers.h | 8 +++--- tests/amdgpu/amd_deadlock.c | 28 +++++++++++--------- 3 files changed, 46 insertions(+), 33 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index dabd7ae76..8ac6abf8f 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -65,7 +65,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin int job_count = 0; struct amdgpu_cmd_base *base_cmd = get_cmd_base(); - if( priority == AMDGPU_CTX_PRIORITY_HIGH) + if (priority == AMDGPU_CTX_PRIORITY_HIGH) r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle); else r = amdgpu_cs_ctx_create(device_handle, &context_handle); @@ -173,7 +173,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin free_cmd_base(base_cmd); } -void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) +void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci) { int r; FILE *fp; @@ -190,18 +190,21 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); if (ip_type == AMD_IP_GFX) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_COMPUTE) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_compute_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_DMA) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); r = access(sysfs, R_OK); if (!r) { fp = popen(cmd, "r"); if (fp == NULL) - igt_skip("read the sysfs failed: %s \n",sysfs); + igt_skip("read the sysfs failed: %s\n", sysfs); if (fgets(buffer, 128, fp) != NULL) sched_mask = strtol(buffer, NULL, 16); @@ -247,7 +250,7 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int /* recover the sched mask */ if (sched_mask > 1) { - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs); r = system(cmd); igt_assert_eq(r, 0); } @@ -269,7 +272,7 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, ring_context = calloc(1, sizeof(*ring_context)); igt_assert(ring_context); - if( priority == AMDGPU_CTX_PRIORITY_HIGH) + if (priority == AMDGPU_CTX_PRIORITY_HIGH) r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &ring_context->context_handle); else r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle); @@ -401,7 +404,7 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type) free_cmd_base(base_cmd); } -void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type) +void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, struct pci_addr *pci) { int r; FILE *fp; @@ -418,18 +421,21 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); if (ip_type == AMD_IP_GFX) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_COMPUTE) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_compute_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); else if (ip_type == AMD_IP_DMA) - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); r = access(sysfs, R_OK); if (!r) { fp = popen(cmd, "r"); if (fp == NULL) - igt_skip("read the sysfs failed: %s \n",sysfs); + igt_skip("read the sysfs failed: %s\n", sysfs); if (fgets(buffer, 128, fp) != NULL) sched_mask = strtol(buffer, NULL, 16); @@ -475,14 +481,14 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd /* recover the sched mask */ if (sched_mask > 1) { - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs); r = system(cmd); igt_assert_eq(r, 0); } } -void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type) +void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci) { int r; FILE *fp; @@ -498,13 +504,14 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha if (!info.available_rings) igt_info("SKIP ... as there's no ring for the sdma\n"); - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", + pci->domain, pci->bus, pci->device, pci->function); snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); r = access(sysfs, R_OK); if (!r) { fp = popen(cmd, "r"); if (fp == NULL) - igt_skip("read the sysfs failed: %s \n",sysfs); + igt_skip("read the sysfs failed: %s\n", sysfs); if (fgets(buffer, 128, fp) != NULL) sched_mask = strtol(buffer, NULL, 16); @@ -530,7 +537,7 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha /* recover the sched mask */ if (sched_mask > 1) { - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs); r = system(cmd); igt_assert_eq(r, 0); } diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h index 7f8419280..1d654c490 100644 --- a/lib/amdgpu/amd_deadlock_helpers.h +++ b/lib/amdgpu/amd_deadlock_helpers.h @@ -24,12 +24,14 @@ #ifndef __AMD_DEADLOCK_HELPERS_H__ #define __AMD_DEADLOCK_HELPERS_H__ +#include "amd_ip_blocks.h" + void -amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type); +amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci); void -bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type); +bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, struct pci_addr *pci); void -amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type); +amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci); #endif diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index b8bb053ca..29b7ae509 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -40,6 +40,7 @@ igt_main int fd = -1; int r; bool arr_cap[AMD_IP_MAX] = {0}; + struct pci_addr pci; igt_fixture { uint32_t major, minor; @@ -60,12 +61,15 @@ igt_main asic_rings_readness(device, 1, arr_cap); igt_skip_on(!is_deadlock_tests_enable(&gpu_info)); + igt_skip_on(get_pci_addr_from_fd(fd, &pci)); + igt_info("PCI Address: domain %04x, bus %02x, device %02x, function %02x\n", + pci.domain, pci.bus, pci.device, pci.function); } igt_describe("Test-GPU-reset-by-flooding-sdma-ring-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma") { if (arr_cap[AMD_IP_DMA]) { igt_dynamic_f("amdgpu-deadlock-sdma") - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA); + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA, &pci); } } @@ -75,7 +79,7 @@ igt_main is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-illegal-reg-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, - AMDGPU_HW_IP_GFX); + AMDGPU_HW_IP_GFX, &pci); } } @@ -85,7 +89,7 @@ igt_main is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-illegal-mem-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, - AMDGPU_HW_IP_GFX); + AMDGPU_HW_IP_GFX, &pci); } } @@ -94,7 +98,7 @@ igt_main igt_subtest_with_dynamic("amdgpu-deadlock-gfx") { if (arr_cap[AMD_IP_GFX]) { igt_dynamic_f("amdgpu-deadlock-gfx") - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_GFX); + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_GFX, &pci); } } @@ -103,7 +107,7 @@ igt_main if (arr_cap[AMD_IP_COMPUTE] && is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, - AMDGPU_HW_IP_COMPUTE); + AMDGPU_HW_IP_COMPUTE, &pci); } } @@ -111,7 +115,7 @@ igt_main igt_subtest_with_dynamic("amdgpu-deadlock-compute") { if (arr_cap[AMD_IP_COMPUTE]) { igt_dynamic_f("amdgpu-deadlock-compute") - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_COMPUTE); + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_COMPUTE, &pci); } } @@ -120,7 +124,7 @@ igt_main if (arr_cap[AMD_IP_DMA] && is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test") - amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG); + amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG, &pci); } } @@ -129,7 +133,7 @@ igt_main if (arr_cap[AMD_IP_DMA] && is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy") - amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG); + amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG, &pci); } } @@ -139,7 +143,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-badop-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } @@ -149,7 +153,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-mem-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } @@ -159,7 +163,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-reg-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } @@ -169,7 +173,7 @@ igt_main is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-length-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH, - AMDGPU_HW_IP_DMA); + AMDGPU_HW_IP_DMA, &pci); } } -- 2.34.1 From vprosyak at amd.com Sun Jan 5 07:20:17 2025 From: vprosyak at amd.com (vitaly prosyak) Date: Sun, 5 Jan 2025 02:20:17 -0500 Subject: [PATCH 3/3] lib/amdpgu: fix the hard code when shedule ring. In-Reply-To: <20250105071551.113830-3-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> <20250105071551.113830-3-vitaly.prosyak@amd.com> Message-ID: <056e6ee5-3d1b-4097-b4e1-b2f7d815a712@amd.com> I applied some code formatting, and the series of three changes now looks good to me. Reviewed-by: Vitaly Prosyak On 2025-01-05 02:15, vitaly.prosyak at amd.com wrote: > From: "Jesse.zhang at amd.com" > > Implementation of dynamically selected scheduling rings. > > Cc: Vitaly Prosyak > Cc: Christian Koenig > Cc: Alexander Deucher > > v2: fix formatting(Vitaly) > > Suggest-by: Vitaly Prosyak > Signed-off-by: Jesse Zhang > Reviewed-by: Vitaly Prosyak > --- > lib/amdgpu/amd_deadlock_helpers.c | 43 ++++++++++++++++++------------- > lib/amdgpu/amd_deadlock_helpers.h | 8 +++--- > tests/amdgpu/amd_deadlock.c | 28 +++++++++++--------- > 3 files changed, 46 insertions(+), 33 deletions(-) > > diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c > index dabd7ae76..8ac6abf8f 100644 > --- a/lib/amdgpu/amd_deadlock_helpers.c > +++ b/lib/amdgpu/amd_deadlock_helpers.c > @@ -65,7 +65,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin > int job_count = 0; > struct amdgpu_cmd_base *base_cmd = get_cmd_base(); > > - if( priority == AMDGPU_CTX_PRIORITY_HIGH) > + if (priority == AMDGPU_CTX_PRIORITY_HIGH) > r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle); > else > r = amdgpu_cs_ctx_create(device_handle, &context_handle); > @@ -173,7 +173,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin > free_cmd_base(base_cmd); > } > > -void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type) > +void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci) > { > int r; > FILE *fp; > @@ -190,18 +190,21 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int > igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); > > if (ip_type == AMD_IP_GFX) > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > else if (ip_type == AMD_IP_COMPUTE) > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_compute_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > else if (ip_type == AMD_IP_DMA) > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > > snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); > r = access(sysfs, R_OK); > if (!r) { > fp = popen(cmd, "r"); > if (fp == NULL) > - igt_skip("read the sysfs failed: %s \n",sysfs); > + igt_skip("read the sysfs failed: %s\n", sysfs); > > if (fgets(buffer, 128, fp) != NULL) > sched_mask = strtol(buffer, NULL, 16); > @@ -247,7 +250,7 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int > > /* recover the sched mask */ > if (sched_mask > 1) { > - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); > + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs); > r = system(cmd); > igt_assert_eq(r, 0); > } > @@ -269,7 +272,7 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, > ring_context = calloc(1, sizeof(*ring_context)); > igt_assert(ring_context); > > - if( priority == AMDGPU_CTX_PRIORITY_HIGH) > + if (priority == AMDGPU_CTX_PRIORITY_HIGH) > r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &ring_context->context_handle); > else > r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle); > @@ -401,7 +404,7 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type) > free_cmd_base(base_cmd); > } > > -void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type) > +void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, struct pci_addr *pci) > { > int r; > FILE *fp; > @@ -418,18 +421,21 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd > igt_info("SKIP ... as there's no ring for ip %d\n", ip_type); > > if (ip_type == AMD_IP_GFX) > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > else if (ip_type == AMD_IP_COMPUTE) > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_compute_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > else if (ip_type == AMD_IP_DMA) > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > > snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); > r = access(sysfs, R_OK); > if (!r) { > fp = popen(cmd, "r"); > if (fp == NULL) > - igt_skip("read the sysfs failed: %s \n",sysfs); > + igt_skip("read the sysfs failed: %s\n", sysfs); > > if (fgets(buffer, 128, fp) != NULL) > sched_mask = strtol(buffer, NULL, 16); > @@ -475,14 +481,14 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd > > /* recover the sched mask */ > if (sched_mask > 1) { > - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); > + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs); > r = system(cmd); > igt_assert_eq(r, 0); > } > > } > > -void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type) > +void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci) > { > int r; > FILE *fp; > @@ -498,13 +504,14 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha > if (!info.available_rings) > igt_info("SKIP ... as there's no ring for the sdma\n"); > > - snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask"); > + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask", > + pci->domain, pci->bus, pci->device, pci->function); > snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs); > r = access(sysfs, R_OK); > if (!r) { > fp = popen(cmd, "r"); > if (fp == NULL) > - igt_skip("read the sysfs failed: %s \n",sysfs); > + igt_skip("read the sysfs failed: %s\n", sysfs); > > if (fgets(buffer, 128, fp) != NULL) > sched_mask = strtol(buffer, NULL, 16); > @@ -530,7 +537,7 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha > > /* recover the sched mask */ > if (sched_mask > 1) { > - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs); > + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs); > r = system(cmd); > igt_assert_eq(r, 0); > } > diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h > index 7f8419280..1d654c490 100644 > --- a/lib/amdgpu/amd_deadlock_helpers.h > +++ b/lib/amdgpu/amd_deadlock_helpers.h > @@ -24,12 +24,14 @@ > #ifndef __AMD_DEADLOCK_HELPERS_H__ > #define __AMD_DEADLOCK_HELPERS_H__ > > +#include "amd_ip_blocks.h" > + > void > -amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type); > +amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci); > void > -bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type); > +bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, struct pci_addr *pci); > > void > -amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type); > +amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci); > #endif > > diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c > index b8bb053ca..29b7ae509 100644 > --- a/tests/amdgpu/amd_deadlock.c > +++ b/tests/amdgpu/amd_deadlock.c > @@ -40,6 +40,7 @@ igt_main > int fd = -1; > int r; > bool arr_cap[AMD_IP_MAX] = {0}; > + struct pci_addr pci; > > igt_fixture { > uint32_t major, minor; > @@ -60,12 +61,15 @@ igt_main > asic_rings_readness(device, 1, arr_cap); > igt_skip_on(!is_deadlock_tests_enable(&gpu_info)); > > + igt_skip_on(get_pci_addr_from_fd(fd, &pci)); > + igt_info("PCI Address: domain %04x, bus %02x, device %02x, function %02x\n", > + pci.domain, pci.bus, pci.device, pci.function); > } > igt_describe("Test-GPU-reset-by-flooding-sdma-ring-with-jobs"); > igt_subtest_with_dynamic("amdgpu-deadlock-sdma") { > if (arr_cap[AMD_IP_DMA]) { > igt_dynamic_f("amdgpu-deadlock-sdma") > - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA); > + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA, &pci); > } > } > > @@ -75,7 +79,7 @@ igt_main > is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-illegal-reg-access") > bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, > - AMDGPU_HW_IP_GFX); > + AMDGPU_HW_IP_GFX, &pci); > } > } > > @@ -85,7 +89,7 @@ igt_main > is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-illegal-mem-access") > bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, > - AMDGPU_HW_IP_GFX); > + AMDGPU_HW_IP_GFX, &pci); > } > } > > @@ -94,7 +98,7 @@ igt_main > igt_subtest_with_dynamic("amdgpu-deadlock-gfx") { > if (arr_cap[AMD_IP_GFX]) { > igt_dynamic_f("amdgpu-deadlock-gfx") > - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_GFX); > + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_GFX, &pci); > } > } > > @@ -103,7 +107,7 @@ igt_main > if (arr_cap[AMD_IP_COMPUTE] && > is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { > bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, > - AMDGPU_HW_IP_COMPUTE); > + AMDGPU_HW_IP_COMPUTE, &pci); > } > } > > @@ -111,7 +115,7 @@ igt_main > igt_subtest_with_dynamic("amdgpu-deadlock-compute") { > if (arr_cap[AMD_IP_COMPUTE]) { > igt_dynamic_f("amdgpu-deadlock-compute") > - amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_COMPUTE); > + amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_COMPUTE, &pci); > } > } > > @@ -120,7 +124,7 @@ igt_main > if (arr_cap[AMD_IP_DMA] && > is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test") > - amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG); > + amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG, &pci); > } > } > > @@ -129,7 +133,7 @@ igt_main > if (arr_cap[AMD_IP_DMA] && > is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy") > - amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG); > + amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG, &pci); > } > } > > @@ -139,7 +143,7 @@ igt_main > is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-deadlock-sdma-badop-test") > bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE, > - AMDGPU_HW_IP_DMA); > + AMDGPU_HW_IP_DMA, &pci); > } > } > > @@ -149,7 +153,7 @@ igt_main > is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-deadlock-sdma-bad-mem-test") > bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, > - AMDGPU_HW_IP_DMA); > + AMDGPU_HW_IP_DMA, &pci); > } > } > > @@ -159,7 +163,7 @@ igt_main > is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-deadlock-sdma-bad-reg-test") > bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, > - AMDGPU_HW_IP_DMA); > + AMDGPU_HW_IP_DMA, &pci); > } > } > > @@ -169,7 +173,7 @@ igt_main > is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { > igt_dynamic_f("amdgpu-deadlock-sdma-bad-length-test") > bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH, > - AMDGPU_HW_IP_DMA); > + AMDGPU_HW_IP_DMA, &pci); > } > } >